From 9187c3ce2b46d8ca68fff7817d3e9b4eceaea68c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Fri, 27 Mar 2026 20:52:10 +0100 Subject: [PATCH] Disable Sentry session replays Removes replayIntegration and replay sample rates from both apps. Quota was already exhausted. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/journal/app/entry.client.tsx | 3 --- apps/planner/app/entry.client.tsx | 3 --- 2 files changed, 6 deletions(-) diff --git a/apps/journal/app/entry.client.tsx b/apps/journal/app/entry.client.tsx index 1efd2c4..f77e5e9 100644 --- a/apps/journal/app/entry.client.tsx +++ b/apps/journal/app/entry.client.tsx @@ -18,12 +18,9 @@ Sentry.init({ createRoutesFromChildren, matchRoutes, }), - Sentry.replayIntegration(), ], environment: sentryEnvironment, tracesSampleRate: sentryEnvironment === "ci" ? 0 : 1.0, - replaysSessionSampleRate: sentryEnvironment === "ci" ? 0 : 1.0, - replaysOnErrorSampleRate: 1.0, enabled: import.meta.env.PROD && sentryEnvironment !== "ci", }); diff --git a/apps/planner/app/entry.client.tsx b/apps/planner/app/entry.client.tsx index b425aa0..a9813eb 100644 --- a/apps/planner/app/entry.client.tsx +++ b/apps/planner/app/entry.client.tsx @@ -18,12 +18,9 @@ Sentry.init({ createRoutesFromChildren, matchRoutes, }), - Sentry.replayIntegration(), ], environment: sentryEnvironment, tracesSampleRate: sentryEnvironment === "ci" ? 0 : 1.0, - replaysSessionSampleRate: sentryEnvironment === "ci" ? 0 : 1.0, - replaysOnErrorSampleRate: 1.0, enabled: import.meta.env.PROD && sentryEnvironment !== "ci", });