fix: use captureException for Sentry verification instead of captureMessage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-03-09 00:13:16 -04:00
parent 4d2f644bac
commit 5885888489

View File

@@ -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"));
}