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(); }); }