Skip to content

Commit

Permalink
fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Jan 31, 2024
1 parent 2945320 commit 4d3828b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/src/tracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function browserTracingIntegration(
): Integration {
// If the user opts out to set this up, we just don't initialize this.
// That way, the TraceService will not actually do anything, functionally disabling this.
if (options.instrumentNavigation === false) {
if (options.instrumentNavigation !== false) {
instrumentationInitialized = true;
hooksBasedInstrumentation = true;
}
Expand Down

0 comments on commit 4d3828b

Please sign in to comment.