We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d48e7b commit 2549a38Copy full SHA for 2549a38
packages/opencode/src/cli/cmd/tui/app.tsx
@@ -672,7 +672,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
672
category: "System",
673
},
674
{
675
- title: "Toggle Theme Mode",
+ title: "Toggle theme mode",
676
value: "theme.switch_mode",
677
onSelect: (dialog) => {
678
setMode(mode() === "dark" ? "light" : "dark")
@@ -681,7 +681,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
681
682
683
684
- title: locked() ? "Unlock Theme Mode" : "Lock Theme Mode",
+ title: locked() ? "Unlock theme mode" : "Lock theme mode",
685
value: "theme.mode.lock",
686
687
if (locked()) unlock()
0 commit comments