Browse Source

fix(prettier): Fix prettier error in js-sdk-loader.ts (#66898)

Malachi Willey 1 year ago
parent
commit
48da227c4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/templates/sentry/js-sdk-loader.ts

+ 1 - 1
src/sentry/templates/sentry/js-sdk-loader.ts

@@ -161,7 +161,7 @@ declare const __LOADER__IS_LAZY__: any;
     if (config.tracesSampleRate && integrationNames.indexOf('BrowserTracing') === -1) {
       if (SDK.browserTracingIntegration) {
         // (Post-)v8 version of the BrowserTracing integration
-        integrations.push(SDK.browserTracingIntegration({ enableInp: true }));
+        integrations.push(SDK.browserTracingIntegration({enableInp: true}));
       } else if (SDK.BrowserTracing) {
         // Pre v8 version of the BrowserTracing integration
         integrations.push(new SDK.BrowserTracing());