diff --git a/packages/browser-utils/src/instrument/history.ts b/packages/browser-utils/src/instrument/history.ts index ad5ecb75f2ed..8494fca3076e 100644 --- a/packages/browser-utils/src/instrument/history.ts +++ b/packages/browser-utils/src/instrument/history.ts @@ -51,7 +51,7 @@ function instrumentHistory(): void { lastHref = to; if (from === to) { - return; + return originalHistoryFunction.apply(this, args); } const handlerData = { from, to } satisfies HandlerDataHistory;