Update apps/client/src/setup.ts

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
JYC333 2026-03-19 11:34:53 +00:00 committed by GitHub
parent 61dfba8c32
commit 225cdaff46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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