Skip to content

Commit e2018b5

Browse files
committed
fix linting
1 parent ec835d5 commit e2018b5

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
@@ -470,7 +470,8 @@ export const browserTracingIntegration = ((_options: Partial<BrowserTracingOptio
470470
}
471471

472472
if (navigationOptions?.isRedirect) {
473-
DEBUG_BUILD && logger.warn('[Tracing] Detected redirect, navigation span will not be the root span, but a child span.');
473+
DEBUG_BUILD &&
474+
logger.warn('[Tracing] Detected redirect, navigation span will not be the root span, but a child span.');
474475
_createRouteSpan(
475476
client,
476477
{
@@ -566,7 +567,8 @@ export const browserTracingIntegration = ((_options: Partial<BrowserTracingOptio
566567
startingUrl = undefined;
567568
const parsed = parseStringToURLObject(to);
568569
const activeSpan = getActiveIdleSpan(client);
569-
const navigationIsRedirect = activeSpan && detectRedirects && isRedirect(activeSpan, lastInteractionTimestamp);
570+
const navigationIsRedirect =
571+
activeSpan && detectRedirects && isRedirect(activeSpan, lastInteractionTimestamp);
570572
startBrowserTracingNavigationSpan(
571573
client,
572574
{

0 commit comments

Comments
 (0)