chore: tweaks

This commit is contained in:
Tristan Yang
2023-03-14 22:05:14 +08:00
parent a27ac2849e
commit 5bc13c6e58
5 changed files with 150 additions and 86 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ export default function Overview() {
<StyledRadio
options={[t("overview.guest_mode.enable"), t("overview.guest_mode.disable")]}
values={["true", "false"]}
value={String(guest)}
value={`${guest}`}
onChange={(v) => {
handleGuestToggle(v);
}}