Upgrave Sentry to v8 and add Sentry Cron monitoring --------- Co-authored-by: Charles Bochet <charles@twenty.com>
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
import { SentryInitEffect } from '@/error-handler/components/SentryInitEffect';
|
|
|
|
export const ExceptionHandlerProvider: React.FC<React.PropsWithChildren> = ({
|
|
children,
|
|
}) => {
|
|
return (
|
|
<>
|
|
<SentryInitEffect />
|
|
{children}
|
|
</>
|
|
);
|
|
};
|