From f6873546dfdb40ec13e71527f5e2e80b4e2275e0 Mon Sep 17 00:00:00 2001 From: Timothy Pidashev Date: Wed, 8 Apr 2026 16:10:32 -0700 Subject: [PATCH] Remove debug url params --- src/components/hero/index.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/components/hero/index.tsx b/src/components/hero/index.tsx index 261aa7c..32d23ab 100644 --- a/src/components/hero/index.tsx +++ b/src/components/hero/index.tsx @@ -450,14 +450,7 @@ function GlitchCountdown({ seconds }: { seconds: number }) { export default function Hero() { const [phase, setPhase] = useState< "intro" | "full" | "retired" | "countdown" | "glitch" - >(() => { - if (typeof window !== "undefined") { - const p = new URLSearchParams(window.location.search); - if (p.has("debug-countdown")) return "countdown"; - if (p.has("debug-glitch")) return "glitch"; - } - return "intro"; - }); + >("intro"); const [fading, setFading] = useState(false); const [cycle, setCycle] = useState(0); const [countdown, setCountdown] = useState(150);