From 225cdaff4633af55ce84e3c0a5021bc6c58ccd4a Mon Sep 17 00:00:00 2001 From: JYC333 <22962980+JYC333@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:34:53 +0000 Subject: [PATCH] Update apps/client/src/setup.ts Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- apps/client/src/setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/setup.ts b/apps/client/src/setup.ts index 4a8e467090..30232b85a3 100644 --- a/apps/client/src/setup.ts +++ b/apps/client/src/setup.ts @@ -51,7 +51,7 @@ class SetupController { for (const input of this.setupTypeInputs) { input.addEventListener("change", () => { - this.setupType = (input.checked ? input.value : this.getSelectedSetupType()) as SetupType; + this.setupType = input.value as SetupType; this.render(); }); }