Skip to content

Commit 2549a38

Browse files
fix(tui): use sentence case for theme mode command palette items (anomalyco#21192)
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com>
1 parent 5d48e7b commit 2549a38

File tree

1 file changed

+2
-2
lines changed
  • packages/opencode/src/cli/cmd/tui

1 file changed

+2
-2
lines changed

packages/opencode/src/cli/cmd/tui/app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
672672
category: "System",
673673
},
674674
{
675-
title: "Toggle Theme Mode",
675+
title: "Toggle theme mode",
676676
value: "theme.switch_mode",
677677
onSelect: (dialog) => {
678678
setMode(mode() === "dark" ? "light" : "dark")
@@ -681,7 +681,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
681681
category: "System",
682682
},
683683
{
684-
title: locked() ? "Unlock Theme Mode" : "Lock Theme Mode",
684+
title: locked() ? "Unlock theme mode" : "Lock theme mode",
685685
value: "theme.mode.lock",
686686
onSelect: (dialog) => {
687687
if (locked()) unlock()

0 commit comments

Comments
 (0)