diff --git a/packages/core/src/router.ts b/packages/core/src/router.ts index 17d3464b3..9a1d2a2e5 100644 --- a/packages/core/src/router.ts +++ b/packages/core/src/router.ts @@ -84,7 +84,7 @@ export class Router { protected handleInitialPageVisit(page: Page): void { const hash = window.location.hash if (!this.page.url.includes(hash)) { - this.page.url += window.location.hash + this.page.url += hash } this.setPage(page, { preserveState: true }).then(() => fireNavigateEvent(page)) }