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'], }),