Files
twenty/packages/twenty-front/src/modules/error-handler/components/ExceptionHandlerProvider.tsx
Félix Malfait 3025ac346c Upgrade sentry (#7145)
Upgrave Sentry to v8 and add Sentry Cron monitoring

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2024-09-19 18:09:24 +02:00

13 lines
257 B
TypeScript

import { SentryInitEffect } from '@/error-handler/components/SentryInitEffect';
export const ExceptionHandlerProvider: React.FC<React.PropsWithChildren> = ({
children,
}) => {
return (
<>
<SentryInitEffect />
{children}
</>
);
};