From fdcecbc4359ec0fab2f54da928b9b113ad8e03f9 Mon Sep 17 00:00:00 2001 From: Jcparkyn <51850908+Jcparkyn@users.noreply.github.com> Date: Sun, 7 Jul 2024 12:24:41 +0000 Subject: [PATCH] Revert accidental comment --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 6348182..9138585 100644 --- a/public/index.html +++ b/public/index.html @@ -129,9 +129,9 @@ app.ports.shareUrl.subscribe(({queryState, useClipboard}) => { const url = new URL(window.location.href); - url.searchParams.delete("state"); + url.searchParams.delete("state"); // clean up old-format URLs for back-compat url.searchParams.set("s", queryState); - // sessionStorage.removeItem("initialSeed"); + sessionStorage.removeItem("initialSeed"); if (useClipboard) { navigator.clipboard.writeText(url.href); }