From 25a2a2c7f642c33ad82c4ff9de4ae23eb514c375 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 27 Oct 2025 18:12:27 +0200 Subject: [PATCH] Revert "Disable Sentry sampling for now (#9262)" (#9282) This reverts commit de68915bc0184c62319217fb468661c55dc23354. --- src/logger/sentry/setup/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logger/sentry/setup/index.ts b/src/logger/sentry/setup/index.ts index 4a0aa0f4fa..4fe07e97e2 100644 --- a/src/logger/sentry/setup/index.ts +++ b/src/logger/sentry/setup/index.ts @@ -29,5 +29,5 @@ init({ * @see https://docs.sentry.io/platforms/react-native/configuration/options/#attach-stacktrace */ attachStacktrace: false, - // sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, + sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, })