From 0552f103e15d4c8639266127fe5096e5ca616fbd Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Fri, 22 Nov 2024 12:23:19 -0500 Subject: [PATCH] Linter fix --- app/scripts/lib/setupSentry.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/scripts/lib/setupSentry.js b/app/scripts/lib/setupSentry.js index 1a8d9cf64b78..72c246826ab5 100644 --- a/app/scripts/lib/setupSentry.js +++ b/app/scripts/lib/setupSentry.js @@ -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 }),