Getting a missing key warning in console using Repeat Elements

Getting a missing key warning in console when using Repeat Elements.
Warning: Each child in a list should have a unique "key" prop.

image.png

That warning is about mapping some elements in react, when you use someArray.map() you need to provide a key={} on each element that you’re displaying, thanks for the heads up, but generally I think it’s safe to ignore this warning, at least for now.