Browse Source

fix: remove the secondary text from commands

David Hill 1 month ago
parent
commit
80b278ddab
1 changed files with 2 additions and 3 deletions
  1. 2 3
      packages/app/src/pages/session.tsx

+ 2 - 3
packages/app/src/pages/session.tsx

@@ -419,7 +419,6 @@ export default function Page() {
     {
     {
       id: "session.new",
       id: "session.new",
       title: "New session",
       title: "New session",
-      description: "Create a new session",
       category: "Session",
       category: "Session",
       keybind: "mod+shift+s",
       keybind: "mod+shift+s",
       slash: "new",
       slash: "new",
@@ -437,7 +436,7 @@ export default function Page() {
     {
     {
       id: "terminal.toggle",
       id: "terminal.toggle",
       title: "Toggle terminal",
       title: "Toggle terminal",
-      description: "Show or hide the terminal",
+      description: "",
       category: "View",
       category: "View",
       keybind: "ctrl+`",
       keybind: "ctrl+`",
       slash: "terminal",
       slash: "terminal",
@@ -446,7 +445,7 @@ export default function Page() {
     {
     {
       id: "review.toggle",
       id: "review.toggle",
       title: "Toggle review",
       title: "Toggle review",
-      description: "Show or hide the review panel",
+      description: "",
       category: "View",
       category: "View",
       keybind: "mod+shift+r",
       keybind: "mod+shift+r",
       onSelect: () => view().reviewPanel.toggle(),
       onSelect: () => view().reviewPanel.toggle(),