We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6708d3b commit bc77daaCopy full SHA for bc77daa
frontend/src/components/UserSettings/Appearance.tsx
@@ -14,8 +14,8 @@ const Appearance = () => {
14
</Heading>
15
16
<RadioGroup
17
- onValueChange={(e) => setTheme(e.value)}
18
- value={theme}
+ onValueChange={(e: { value: any }) => setTheme(e.value)}
+ value={theme ?? "system"}
19
colorPalette="teal"
20
>
21
<Stack>
0 commit comments