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 0ac269f commit 4aac54fCopy full SHA for 4aac54f
src/Cards/CardList.js
@@ -45,7 +45,7 @@ function CardList(props) {
45
<StackGrid className="container-fluid p-0" {...gridSettings}>
46
{props.cards.map ? (props.cards.map((card, index) => {
47
return (
48
- <CardItem card={card} key={index} index={index} />
+ <CardItem card={card} key={card.id} index={index} />
49
)
50
})) : null}
51
</StackGrid>
0 commit comments