From e284f67a21096f0e114f8ad2ba6c82b07230a906 Mon Sep 17 00:00:00 2001 From: Spencer Murray Date: Wed, 6 Nov 2024 14:40:30 -0500 Subject: [PATCH] Remove comments --- src/background/main.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/background/main.ts b/src/background/main.ts index 06eaaa8..98c2395 100644 --- a/src/background/main.ts +++ b/src/background/main.ts @@ -13,11 +13,6 @@ async function main(): Promise { // @ts-ignore SENTRY_DSN is populated by Webpack at build time dsn: SENTRY_DSN, - // This enables automatic instrumentation (highly recommended), - // but is not necessary for purely manual usage - // If you only want to use custom instrumentation: - // * Remove the `BrowserTracing` integration - // * add `Sentry.addTracingExtensions()` above your Sentry.init() call integrations: [ Sentry.browserTracingIntegration({ // disable automatic span creation @@ -26,8 +21,6 @@ async function main(): Promise { }), ], - // We recommend adjusting this value in production, or using tracesSampler - // for finer control tracesSampleRate: 1.0, }); browser.runtime.onMessage.addListener(handleMessages);