Browse Source

prevent infinite timers caused by sentry

Eugene Pankov 6 years ago
parent
commit
fc471b2c16
1 changed files with 3 additions and 0 deletions
  1. 3 0
      app/lib/sentry.ts

+ 3 - 0
app/lib/sentry.ts

@@ -12,4 +12,7 @@ try {
 init({
     dsn: SENTRY_DSN,
     release,
+    integrations (integrations) {
+        return integrations.filter(integration => integration.name !== 'Breadcrumbs')
+    },
 })