{String(error)}
// Error boundary scoped to the /admin subtree. A render error (or a loader // rejection that ISN'T a RedirectError / NotFoundError) bubbles to here instead // of the router default. `reset` re-runs the failed segment. import type { ReactNode } from 'react' import type { ErrorBoundaryProps } from '@voltro/web' import { T } from '@voltro/i18n' export default function AdminError({ error, reset }: ErrorBoundaryProps): ReactNode { return (
{String(error)}