Skip to content

Commit d819ae5

Browse files
committed
fix: remove unused index parameter in CommandPatternSelector
1 parent 63ce9e7 commit d819ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/chat/CommandPatternSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const CommandPatternSelector: React.FC<CommandPatternSelectorProps> = ({
8181

8282
{isExpanded && (
8383
<div className="px-3 pb-3 space-y-2">
84-
{patterns.map((item, index) => {
84+
{patterns.map((item) => {
8585
const status = getPatternStatus(item.pattern)
8686
return (
8787
<div key={item.pattern} className="ml-5 flex items-center gap-2">

0 commit comments

Comments
 (0)