import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { AlertCircle } from 'lucide-react'; function DetailedErrorFallback({ error, resetErrorBoundary }) { return (
{error.message}
{error.componentStack || error.stack}
{error.fileName}
{error.lineNumber}
{JSON.stringify(error, Object.getOwnPropertyNames(error), 2)}