'use client'; export default function GlobalError({ error, reset, }: { error: Error & { digest?: string }; reset: () => void; }) { const gatewayUrl = process.env.NEXT_PUBLIC_GATEWAY_URL; return (

Something went wrong

This workspace is temporarily unavailable. This usually resolves on its own within a few minutes.

{gatewayUrl && ( Back to account )}
); }