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 (

We caught an unrecoverable error!

Please consider reporting this error to our {" "} GitHub page {" or to "} our official Discord channel .

); };