import newGithubIssueUrl from "@core/utils/github.ts"; import { ExternalLink } from "lucide-react"; import { Heading } from "@components/UI/Typography/Heading.tsx"; import { Link } from "@components/UI/Typography/Link.tsx"; import { P } from "@components/UI/Typography/P.tsx"; export function ErrorPage({ error }: { error: Error }) { if (!error) { return null; } return (
This is a little embarrassing...

We are really sorry but an error occurred in the web client that caused it to crash.
This is not supposed to happen, and we are working hard to fix it.

The best way to prevent this from happening again to you or anyone else is to report the issue to us.

Please include the following information in your report:

  • What you were doing when the error occurred
  • What you expected to happen
  • What actually happened
  • Any other relevant information

You can report the issue to our{" "} ", logs: error?.stack, })} > Github

Return to the dashboard

Chirpy the Meshtastic error
Error Details {error?.message && ( <>

{error.message}

)} {error?.stack && ( <>

{error.stack}

)} {!error?.message && !error?.stack && (

{error.toString()}

)}
); }