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 f65fc3f commit 52b871bCopy full SHA for 52b871b
src/components/Voronoi.tsx
@@ -201,9 +201,9 @@ function PrimaryVoronoi<TDatum>({
201
},
202
}}
203
>
204
- {columns.map(column => {
+ {columns.map((column, i) => {
205
return (
206
- <React.Fragment key={column.primaryPx}>
+ <React.Fragment key={`${column.primaryPx}_${i}`}>
207
{column.datumBoundaries.map(datumBoundary => {
208
const x1 = !primaryAxis.isVertical
209
? column.primaryStart
0 commit comments