mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
fix: remove unused index parameter in CommandPatternSelector
This commit is contained in:
parent
63ce9e7a9b
commit
d819ae57b7
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ export const CommandPatternSelector: React.FC<CommandPatternSelectorProps> = ({
|
|||
|
||||
{isExpanded && (
|
||||
<div className="px-3 pb-3 space-y-2">
|
||||
{patterns.map((item, index) => {
|
||||
{patterns.map((item) => {
|
||||
const status = getPatternStatus(item.pattern)
|
||||
return (
|
||||
<div key={item.pattern} className="ml-5 flex items-center gap-2">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue