From 5885888489d847080a99de4d8a78fa0bff1847f9 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Mon, 9 Mar 2026 00:13:16 -0400 Subject: [PATCH] fix: use captureException for Sentry verification instead of captureMessage Co-Authored-By: Claude Opus 4.6 --- frontend/src/instrument.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/instrument.ts b/frontend/src/instrument.ts index 7fed0cc9..70a3f5db 100644 --- a/frontend/src/instrument.ts +++ b/frontend/src/instrument.ts @@ -32,5 +32,5 @@ Sentry.init({ // TODO: Remove after verifying Sentry is receiving frontend events if (import.meta.env.PROD) { - Sentry.captureMessage("ResolutionFlow frontend Sentry verification", "info"); + Sentry.captureException(new Error("ResolutionFlow frontend Sentry verification")); }