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

{String(error)}

) }