- Updated import paths for various components to align with new directory structure. - Changed imports from 'row-actions', 'confirm-dialog', 'image-preview-button', and 'file-upload' to their respective new locations in 'data-display', 'dialogs', and 'inputs'. - Adjusted imports in multiple pages including purchase, restock, transaction, category, customer, product, raw-material, supplier, roles, and settings. - Ensured all relevant components are imported from their new locations to maintain functionality.
25 lines
717 B
TypeScript
25 lines
717 B
TypeScript
import { AlertCircleIcon } from 'lucide-react';
|
|
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
|
|
|
|
export default function AlertError({
|
|
errors,
|
|
title,
|
|
}: {
|
|
errors: string[];
|
|
title?: string;
|
|
}) {
|
|
return (
|
|
<Alert variant="destructive">
|
|
<AlertCircleIcon />
|
|
<AlertTitle>{title || 'Something went wrong.'}</AlertTitle>
|
|
<AlertDescription>
|
|
<ul className="list-inside list-disc text-sm">
|
|
{Array.from(new Set(errors)).map((error, index) => (
|
|
<li key={index}>{error}</li>
|
|
))}
|
|
</ul>
|
|
</AlertDescription>
|
|
</Alert>
|
|
);
|
|
}
|