// Error boundary scoped to the /dashboard subtree. A render error (or a loader // rejection that ISN'T a RedirectError / NotFoundError) bubbles to the nearest // `error.tsx` — this one. `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 DashboardError({ error, reset }: ErrorBoundaryProps): ReactNode { return (

{String(error)}

) }