From 50dba6de15eff156abc98ddfebf196c0393d5ec6 Mon Sep 17 00:00:00 2001 From: Justin Hernandez Date: Mon, 15 Dec 2025 20:44:59 -0800 Subject: [PATCH] SELF-1665: address sentry replay preview (#1509) * fix sentry replays * clean up comments --- app/src/config/sentry.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/config/sentry.ts b/app/src/config/sentry.ts index a190fcbd1..9d17bee56 100644 --- a/app/src/config/sentry.ts +++ b/app/src/config/sentry.ts @@ -11,6 +11,7 @@ import { consoleLoggingIntegration, feedbackIntegration, init as sentryInit, + mobileReplayIntegration, withScope, wrap, } from '@sentry/react-native'; @@ -164,6 +165,11 @@ export const initSentry = () => { return event; }, integrations: [ + mobileReplayIntegration({ + maskAllText: true, + maskAllImages: false, + maskAllVectors: false, + }), consoleLoggingIntegration({ levels: ['log', 'error', 'warn', 'info', 'debug'], }),