From 26bef474038d96e3ee0fa9dd4cc180fce38dd9d0 Mon Sep 17 00:00:00 2001 From: Regalijan Date: Sun, 15 Mar 2026 03:14:19 -0400 Subject: [PATCH] Disable text masking and media blocking --- app/entry.client.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/entry.client.tsx b/app/entry.client.tsx index f1818ad..4a36ef4 100644 --- a/app/entry.client.tsx +++ b/app/entry.client.tsx @@ -16,7 +16,11 @@ Sentry.init({ useLocation, useMatches, }), - Sentry.replayIntegration(), + Sentry.replayIntegration({ + blockAllMedia: false, + maskAllInputs: false, + maskAllText: false, + }), ], replaysOnErrorSampleRate: 1, replaysSessionSampleRate: 0.02,