Change option values for theme selection in App.tsx

This commit is contained in:
2026-02-01 04:35:05 +01:00
parent 497738eb73
commit 7f2fe4a823

View File

@@ -1742,10 +1742,10 @@ export default function App() {
className="settings-panel__select"
value={theme}
onChange={(event) =>
setTheme(event.target.value as "default" | "light")
setTheme(event.target.value as "dark" | "light")
}
>
<option value="default">Default</option>
<option value="dark">Dark</option>
<option value="light">Bright</option>
</select>
</div>