Fix escaped backtick that broke Docker Astro build

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-04-29 01:42:12 -05:00
parent e1b95a20fb
commit 02d2415d7a

View file

@ -386,7 +386,7 @@ const STEP_LABELS: Record<string, string> = {
`;
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();