We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9481c95 commit 63ce9e7Copy full SHA for 63ce9e7
webview-ui/src/components/chat/CommandPatternSelector.tsx
@@ -84,7 +84,7 @@ export const CommandPatternSelector: React.FC<CommandPatternSelectorProps> = ({
84
{patterns.map((item, index) => {
85
const status = getPatternStatus(item.pattern)
86
return (
87
- <div key={`${item.pattern}-${index}`} className="ml-5 flex items-center gap-2">
+ <div key={item.pattern} className="ml-5 flex items-center gap-2">
88
<div className="flex-1">
89
<span className="font-mono text-xs text-vscode-foreground">{item.pattern}</span>
90
{item.description && (
0 commit comments