import StackTracey from "stacktracey"; import type { FallbackProps } from "react-error-boundary"; import { ArrowPathIcon } from "@heroicons/react/24/solid"; export const ErrorPage = ({ error, resetErrorBoundary }: FallbackProps) => { const stack = new StackTracey(error); const summary = stack.clean().asTable({ maxColumnWidths: { callee: 48, file: 48, sourceLine: 384 } }); return (
{summary}) : null} You can try resetting the page state using the button provided below. However, this is not guaranteed to fix the error.