Skip to content

Commit 9dec9c3

Browse files
committed
fix linting
1 parent 7c58561 commit 9dec9c3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/browser/src/tracing/browserTracingIntegration.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,8 @@ export const browserTracingIntegration = ((_options: Partial<BrowserTracingOptio
490490
}
491491

492492
if (navigationOptions?.isRedirect) {
493-
DEBUG_BUILD && logger.warn('[Tracing] Detected redirect, navigation span will not be the root span, but a child span.');
493+
DEBUG_BUILD &&
494+
logger.warn('[Tracing] Detected redirect, navigation span will not be the root span, but a child span.');
494495
_createRouteSpan(
495496
client,
496497
{
@@ -586,7 +587,8 @@ export const browserTracingIntegration = ((_options: Partial<BrowserTracingOptio
586587
startingUrl = undefined;
587588
const parsed = parseStringToURLObject(to);
588589
const activeSpan = getActiveIdleSpan(client);
589-
const navigationIsRedirect = activeSpan && detectRedirects && isRedirect(activeSpan, lastInteractionTimestamp);
590+
const navigationIsRedirect =
591+
activeSpan && detectRedirects && isRedirect(activeSpan, lastInteractionTimestamp);
590592
startBrowserTracingNavigationSpan(
591593
client,
592594
{

0 commit comments

Comments
 (0)