Skip to content

Commit 0e2eec0

Browse files
committed
fix(browser): Fix incorrect previous trcae max duration
1 parent 79a3384 commit 0e2eec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/src/tracing/previousTrace.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface PreviousTraceInfo {
1616
}
1717

1818
// 1h in seconds
19-
export const PREVIOUS_TRACE_MAX_DURATION = 216_000;
19+
export const PREVIOUS_TRACE_MAX_DURATION = 3600;
2020

2121
// session storage key
2222
export const PREVIOUS_TRACE_KEY = 'sentry_previous_trace';

0 commit comments

Comments
 (0)