Lower sentry sample rate to avoid threshold overflow

This commit is contained in:
Daniel Sanchez 2020-11-30 15:15:27 +01:00
parent a7cf0ffbf2
commit 8d73ebd177
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ Sentry.init({
dsn: SENTRY_DSN, dsn: SENTRY_DSN,
release: `safe-react@${process.env.REACT_APP_APP_VERSION}`, release: `safe-react@${process.env.REACT_APP_APP_VERSION}`,
integrations: [new Integrations.BrowserTracing()], integrations: [new Integrations.BrowserTracing()],
sampleRate: 1, sampleRate: 0.2,
}) })
const root = document.getElementById('root') const root = document.getElementById('root')