We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b7b8c commit aa7c704Copy full SHA for aa7c704
apps/web/src/components/ChatView.tsx
@@ -1119,6 +1119,10 @@ export default function ChatView({ threadId }: ChatViewProps) {
1119
}, [activeProjectCwd, activeThreadWorktreePath]);
1120
// Default true while loading to avoid toolbar flicker.
1121
const isGitRepo = branchesQuery.data?.isRepo ?? true;
1122
+ const terminalToggleShortcutLabel = useMemo(
1123
+ () => shortcutLabelForCommand(keybindings, "terminal.toggle"),
1124
+ [keybindings],
1125
+ );
1126
const splitTerminalShortcutLabel = useMemo(
1127
() => shortcutLabelForCommand(keybindings, "terminal.split"),
1128
[keybindings],
0 commit comments