From 9a621d44dc92453657beb005ec64f17d91386339 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Wed, 15 Apr 2026 14:07:37 -0600 Subject: [PATCH] fix: back button --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 3234883..19fa89b 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -36,7 +36,7 @@ export default function App() { useEffect(() => { if (href && new URLSearchParams(location.search).get("href") !== href) - history.replaceState(null, "", "?href=" + href); + history.pushState(null, "", "?href=" + href); else history.replaceState(null, "", null); }, [href]);