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

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Daniel 2025-07-24 12:38:25 -05:00 committed by GitHub
parent 9481c95bbe
commit 63ce9e7a9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@ export const CommandPatternSelector: React.FC<CommandPatternSelectorProps> = ({
{patterns.map((item, index) => {
const status = getPatternStatus(item.pattern)
return (
<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">
<div className="flex-1">
<span className="font-mono text-xs text-vscode-foreground">{item.pattern}</span>
{item.description && (