Improve light mode dark mode copy

This commit is contained in:
Dax Raad
2026-04-17 12:00:22 -04:00
committed by opencode
parent 803d9eb7ad
commit 1a59133168

View File

@@ -606,7 +606,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
category: "System",
},
{
title: "Toggle theme mode",
title: mode() === "dark" ? "Switch to light mode" : "Switch to dark mode",
value: "theme.switch_mode",
onSelect: (dialog) => {
setMode(mode() === "dark" ? "light" : "dark")