From bb4fda1579dd48cc4bf17c5a42780e04b781c078 Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Sun, 26 Apr 2026 00:04:37 -0600 Subject: [PATCH] Fix patch button showing after failed download --- src/components/Hack/HackActions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Hack/HackActions.tsx b/src/components/Hack/HackActions.tsx index 866719e..ce412c8 100644 --- a/src/components/Hack/HackActions.tsx +++ b/src/components/Hack/HackActions.tsx @@ -146,6 +146,7 @@ const HackActions: React.FC = ({ } catch (e: any) { setError(e?.message || "Failed to fetch patch URL"); setStatus("idle"); + setTermsAgreed(false); } }