From 8e0a0d6f82907e82453b060c43e4f232c93b13a7 Mon Sep 17 00:00:00 2001 From: Kenny Jung Date: Wed, 10 Apr 2024 01:21:01 -0400 Subject: [PATCH] Don't mask texts in Sentry replays --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 720a868..2fc47af 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -15,7 +15,7 @@ Sentry.init({ dsn: process.env.REACT_APP_SENTRY_DSN, integrations: [ Sentry.reactRouterV5BrowserTracingIntegration({ history }), - Sentry.replayIntegration(), + Sentry.replayIntegration({ maskAllText: false }), ], tracesSampleRate: 1.0, replaysSessionSampleRate: 0.1,