From 9eed8ab8483fa80bad3536a3c23ce94e45ba6698 Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Tue, 10 Mar 2026 09:57:41 -0400 Subject: [PATCH] chore: remove Sentry verification error from frontend MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test error was firing on every production page load — no longer needed now that Sentry is confirmed working. Co-Authored-By: Claude Opus 4.6 --- frontend/src/instrument.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frontend/src/instrument.ts b/frontend/src/instrument.ts index 823a6d4b..99c59e92 100644 --- a/frontend/src/instrument.ts +++ b/frontend/src/instrument.ts @@ -28,9 +28,4 @@ Sentry.init({ // 1% of normal sessions, 100% of error sessions replaysSessionSampleRate: import.meta.env.PROD ? 0.01 : 0.0, replaysOnErrorSampleRate: 1.0, -}); - -// TODO: Remove after verifying Sentry is receiving frontend events -if (import.meta.env.PROD) { - Sentry.captureException(new Error("ResolutionFlow frontend Sentry verification")); -} +}); \ No newline at end of file