We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
wrapHandleErrorWithSentry
browserTracingIntegration
1 parent 02791c8 commit 8687723Copy full SHA for 8687723
packages/remix/test/integration/app_v2_tracingIntegration/entry.server.tsx
@@ -11,7 +11,11 @@ Sentry.init({
11
autoSessionTracking: false,
12
});
13
14
-export const handleError = Sentry.wrapRemixHandleError;
+const handleErrorImpl = () => {
15
+ Sentry.setTag('remix-test-tag', 'remix-test-value');
16
+};
17
+
18
+export const handleError = Sentry.wrapHandleErrorWithSentry(handleErrorImpl);
19
20
export default function handleRequest(
21
request: Request,
0 commit comments