diff --git a/packages/remix/test/integration/app_v2_tracingIntegration/entry.server.tsx b/packages/remix/test/integration/app_v2_tracingIntegration/entry.server.tsx index bba366801092..d9ff60199124 100644 --- a/packages/remix/test/integration/app_v2_tracingIntegration/entry.server.tsx +++ b/packages/remix/test/integration/app_v2_tracingIntegration/entry.server.tsx @@ -11,7 +11,11 @@ Sentry.init({ autoSessionTracking: false, }); -export const handleError = Sentry.wrapRemixHandleError; +const handleErrorImpl = () => { + Sentry.setTag('remix-test-tag', 'remix-test-value'); +}; + +export const handleError = Sentry.wrapHandleErrorWithSentry(handleErrorImpl); export default function handleRequest( request: Request,