diff --git a/quartz/components/scripts/spa.inline.ts b/quartz/components/scripts/spa.inline.ts index 6f9399ea..d91ca78c 100644 --- a/quartz/components/scripts/spa.inline.ts +++ b/quartz/components/scripts/spa.inline.ts @@ -79,7 +79,9 @@ async function navigate(url: URL, isBack: boolean = false) { // delay setting the url until now // at this point everything is loaded so changing the url should resolve to the correct addresses - history.pushState({}, "", url) + if (!isBack) { + history.pushState({}, "", url) + } notifyNav(getFullSlug(window)) delete announcer.dataset.persist }