Home / Function/ GlobalError() — supabase Function Reference

GlobalError() — supabase Function Reference

Architecture documentation for the GlobalError() function in global-error.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/docs/app/global-error.tsx lines 7–23

export default function GlobalError({ error }: { error: Error & { digest?: string } }) {
  useEffect(() => {
    Sentry.captureException(error)
  }, [error])

  return (
    <html>
      <body>
        {/* `NextError` is the default Next.js error page component. Its type
        definition requires a `statusCode` prop. However, since the App Router
        does not expose status codes for errors, we simply pass 0 to render a
        generic error message. */}
        <NextError statusCode={0} />
      </body>
    </html>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free