From 02d2415d7a3e205e4e084fc6ed8324592bd24f38 Mon Sep 17 00:00:00 2001 From: justin Date: Wed, 29 Apr 2026 01:42:12 -0500 Subject: [PATCH] Fix escaped backtick that broke Docker Astro build Co-Authored-By: Claude Opus 4.6 (1M context) --- site/src/components/intake/Wizard.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/intake/Wizard.astro b/site/src/components/intake/Wizard.astro index 4cb2b4a..99cc43e 100644 --- a/site/src/components/intake/Wizard.astro +++ b/site/src/components/intake/Wizard.astro @@ -386,7 +386,7 @@ const STEP_LABELS: Record = { `; if (footer) footer.hidden = true; document.getElementById("pw-revise-btn")?.addEventListener("click", () => { - sessionStorage.removeItem(\`pw-intake-\${slug}\`); + sessionStorage.removeItem("pw-intake-" + slug); const url = new URL(window.location.href); url.searchParams.set("revise", "1"); window.location.href = url.toString();