import { Alert } from "@mantine/core"; import { IconAlertTriangle } from "@tabler/icons-react"; import { Component, ErrorInfo, ReactNode } from "react"; import { useLocation } from "react-router-dom"; interface Props { children?: ReactNode; title?: string; } interface State { error: Error | null; } class ErrorBoundary extends Component { public state: State = { error: null, }; public static getDerivedStateFromError(error: Error): State { // Update state so the next render will show the fallback UI. return { error }; } public componentDidCatch(error: Error, errorInfo: ErrorInfo) { console.error("Uncaught error:", error, errorInfo); } public render() { if (this.state.error !== null) { return ( } maw={500} mx="auto" mt="lg" > Error: {this.state.error.message} ); } return this.props.children; } } const ResettingErrorBoundary = (props: Props) => { const location = useLocation(); return ( {props.children} ); }; export default ResettingErrorBoundary;