From 7799f0cabfe0ab99f21d84bf3368274d0420a2d5 Mon Sep 17 00:00:00 2001 From: Daniel Riccio Date: Thu, 24 Jul 2025 12:26:42 -0500 Subject: [PATCH] refactor: remove automatic 'commands' description suffix from patterns --- webview-ui/src/components/chat/CommandExecution.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/webview-ui/src/components/chat/CommandExecution.tsx b/webview-ui/src/components/chat/CommandExecution.tsx index cf0702e302..e485ed5bc0 100644 --- a/webview-ui/src/components/chat/CommandExecution.tsx +++ b/webview-ui/src/components/chat/CommandExecution.tsx @@ -78,7 +78,6 @@ export const CommandExecution = ({ executionId, text, icon, title }: CommandExec const extractedPatterns = extractPatternsFromCommand(command) return extractedPatterns.map((pattern) => ({ pattern, - description: `${pattern} commands`, })) }, [command])