@@ -219,7 +219,10 @@ export default function CollectionOfCustomButtons(
219
219
{ ... getOverrideProps (overrides , \\" Collection\\ " )}
220
220
>
221
221
{ (item , index ) => (
222
- <Flex { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )} >
222
+ <Flex
223
+ key = { item .id }
224
+ { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )}
225
+ >
223
226
<Button
224
227
labelWidth = { width }
225
228
backgroundColor = { buttonColor ? .favoriteColor }
@@ -322,7 +325,10 @@ export default function CollectionOfCustomButtons(
322
325
{ ... getOverrideProps (overrides , \\" Collection\\ " )}
323
326
>
324
327
{ (item , index ) => (
325
- <Flex { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )} >
328
+ <Flex
329
+ key = { item .id }
330
+ { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )}
331
+ >
326
332
<Button
327
333
labelWidth = { width }
328
334
backgroundColor = { buttonColor ? .favoriteColor }
@@ -421,7 +427,10 @@ export default function CollectionOfCustomButtons(
421
427
{ ... getOverrideProps (overrides , \\" Collection\\ " )}
422
428
>
423
429
{ (item , index ) => (
424
- <Flex { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )} >
430
+ <Flex
431
+ key = { item .id }
432
+ { ... getOverrideProps (overrides , \\" Collection.Flex[0]\\ " )}
433
+ >
425
434
<Button
426
435
labelWidth = { width }
427
436
backgroundColor = { buttonColor ? .favoriteColor }
@@ -489,6 +498,7 @@ export default function ListingCardCollection(
489
498
marginBottom =\\"0\\"
490
499
marginTop =\\"0\\"
491
500
marginLeft =\\"0\\"
501
+ key = { item .id }
492
502
{ ... getOverrideProps (overrides , \\" Collection.ListingCard[0]\\ " )}
493
503
></ListingCard >
494
504
)}
@@ -532,6 +542,7 @@ export default function ListingCardCollection(
532
542
>
533
543
{ (item , index ) => (
534
544
<ListingCard
545
+ key = { item .id }
535
546
{ ... getOverrideProps (overrides , \\" Collection.ListingCard[0]\\ " )}
536
547
></ListingCard >
537
548
)}
@@ -2267,6 +2278,7 @@ export default function CollectionDefaultValue(
2267
2278
>
2268
2279
{ (item , index ) => (
2269
2280
<Text
2281
+ key = { item .id }
2270
2282
children = { item .username || \\" Collection Default Value\\ " }
2271
2283
{ ... getOverrideProps (overrides , \\" Collection.Text[0]\\ " )}
2272
2284
></Text >
0 commit comments