import { AlertTriangleIcon } from "lucide-react"; import { Alert, AlertDescription, AlertTitle } from "../ui/alert"; export function ChatError({ error }: { error?: Error }) { if (!error) return null; return ( {error.name} {error.message} ); }