Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift authored Nov 22, 2024
1 parent cfdcfcc commit 0552f10
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/scripts/lib/setupSentry.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ function getClientOptions() {
Sentry.browserTracingIntegration({
shouldCreateSpanForRequest: (url) => {
// Do not create spans for outgoing requests to a 'sentry.io' domain.
return !url.match(
/^https?:\/\/([\w\d.@-]+\.)?sentry\.io(\/|$)/u
);
return !url.match(/^https?:\/\/([\w\d.@-]+\.)?sentry\.io(\/|$)/u);
},
}),
filterEvents({ getMetaMetricsEnabled, log }),
Expand Down

0 comments on commit 0552f10

Please sign in to comment.