diff options
| author | David Hill <[email protected]> | 2026-01-17 00:35:32 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-17 00:55:13 +0000 |
| commit | 80b278ddab83c18db6f3609ab0fa652c72ae1ba7 (patch) | |
| tree | e0fff65d4316ec1cdd46d244f8b0b634c741c681 /packages/app/src | |
| parent | ef7ef6538e347c8d7052b641e3bcb8a95099f92e (diff) | |
| download | opencode-80b278ddab83c18db6f3609ab0fa652c72ae1ba7.tar.gz opencode-80b278ddab83c18db6f3609ab0fa652c72ae1ba7.zip | |
fix: remove the secondary text from commands
Diffstat (limited to 'packages/app/src')
| -rw-r--r-- | packages/app/src/pages/session.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/app/src/pages/session.tsx b/packages/app/src/pages/session.tsx index ca5e73a9b..aad0b596c 100644 --- a/packages/app/src/pages/session.tsx +++ b/packages/app/src/pages/session.tsx @@ -419,7 +419,6 @@ export default function Page() { { id: "session.new", title: "New session", - description: "Create a new session", category: "Session", keybind: "mod+shift+s", slash: "new", @@ -437,7 +436,7 @@ export default function Page() { { id: "terminal.toggle", title: "Toggle terminal", - description: "Show or hide the terminal", + description: "", category: "View", keybind: "ctrl+`", slash: "terminal", @@ -446,7 +445,7 @@ export default function Page() { { id: "review.toggle", title: "Toggle review", - description: "Show or hide the review panel", + description: "", category: "View", keybind: "mod+shift+r", onSelect: () => view().reviewPanel.toggle(), |
