import * as Sentry from '@sentry/react'; import { ErrorInfo, ReactNode } from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import { GenericErrorFallback } from '@/error-handler/components/GenericErrorFallback'; export const AppErrorBoundary = ({ children }: { children: ReactNode }) => { const handleError = (_error: Error, _info: ErrorInfo) => { Sentry.captureException(_error, (scope) => { scope.setExtras({ _info }); return scope; }); }; // TODO: Implement a better reset strategy, hard reload for now const handleReset = () => { window.location.reload(); }; return ( {children} ); };