We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99515d7 commit e553669Copy full SHA for e553669
packages/trace-viewer/src/ui/actionList.tsx
@@ -171,7 +171,7 @@ export function renderTitleForCall(action: ActionTraceEvent): { elements: React.
171
elements.push(param);
172
title.push(param);
173
} else {
174
- elements.push(<span className='action-title-param'>{param}</span>);
+ elements.push(<span key={elements.length} className='action-title-param'>{param}</span>);
175
176
}
177
currentIndex = match.index + fullMatch.length;
0 commit comments