generic error view with try again

This commit is contained in:
2026-06-11 12:23:19 +02:00
parent 6ef08f4b91
commit 98a5bb742b
+1 -3
View File
@@ -17,9 +17,7 @@ export const Route = createFileRoute("/callback")({
},
component: RouteComponent,
errorComponent: ({ error, reset }) => (
<GenericErrorView error={error} resetErrorBoundary={reset} />
),
errorComponent: ({ error }) => <GenericErrorView error={error} />,
});
function RouteComponent() {