Browse Source

ref(rr6): Remove unused param (#79379)

Evan Purkhiser 4 months ago
parent
commit
034215a635
1 changed files with 1 additions and 3 deletions
  1. 1 3
      static/app/bootstrap/initializeSdk.tsx

+ 1 - 3
static/app/bootstrap/initializeSdk.tsx

@@ -78,15 +78,13 @@ function getSentryIntegrations() {
   return integrations;
 }
 
-// TODO(__SENTRY_USING_REACT_ROUTER_SIX): Remove opts once getsentry has had
-// this paramter removed
 /**
  * Initialize the Sentry SDK
  *
  * If `routes` is passed, we will instrument react-router. Not all
  * entrypoints require this.
  */
-export function initializeSdk(config: Config, _otps?: any) {
+export function initializeSdk(config: Config) {
   const {apmSampling, sentryConfig, userIdentity} = config;
   const tracesSampleRate = apmSampling ?? 0;
   const extraTracePropagationTargets = SPA_DSN