From d819ae57b7d1c2eb333a2d5bc871959a78ca0fb0 Mon Sep 17 00:00:00 2001 From: Daniel Riccio Date: Thu, 24 Jul 2025 12:47:49 -0500 Subject: [PATCH] fix: remove unused index parameter in CommandPatternSelector --- webview-ui/src/components/chat/CommandPatternSelector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webview-ui/src/components/chat/CommandPatternSelector.tsx b/webview-ui/src/components/chat/CommandPatternSelector.tsx index c830ae5be8..8d3acf71c4 100644 --- a/webview-ui/src/components/chat/CommandPatternSelector.tsx +++ b/webview-ui/src/components/chat/CommandPatternSelector.tsx @@ -81,7 +81,7 @@ export const CommandPatternSelector: React.FC = ({ {isExpanded && (
- {patterns.map((item, index) => { + {patterns.map((item) => { const status = getPatternStatus(item.pattern) return (