import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { AlertCircleIcon } from 'lucide-react'; export default function AlertError({ errors, title, }: { errors: string[]; title?: string; }) { return ( {title || 'Something went wrong.'}
    {Array.from(new Set(errors)).map((error, index) => (
  • {error}
  • ))}
); }