aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-12 15:17:08 +0100
committerGravatar Joe Banks <[email protected]>2020-10-12 15:17:08 +0100
commitd392f3ed6e0b88f466b4016163870285e0be336e (patch)
tree73aebef3e48361c4a26f12aa5bef57be89c5a424 /src/index.tsx
parentRemove @sentry/tracing package (diff)
Disable tracing integration
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx
index fd6ec18..5f0e4cd 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -4,16 +4,12 @@ import App from './App';
import * as serviceWorker from './serviceWorker';
import * as Sentry from "@sentry/react";
-import { Integrations } from "@sentry/tracing";
import colors from "./colors";
if (process.env.NODE_ENV === "production") {
Sentry.init({
dsn: process.env.REACT_APP_SENTRY_DSN,
- integrations: [
- new Integrations.BrowserTracing(),
- ],
tracesSampleRate: 0.25,
release: `forms-frontend@${process.env.REACT_APP_SHA}`
});