Skip to content

Commit

Permalink
ar(feat) [DPCP-46]: Abstract Views: fix Card Grid key
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 5, 2024
1 parent 4a6fd29 commit fffa147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molecules/01_CardGrid/CardGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const HCardGrid = function ({
>
{cards.map((card) => (
<Card
key={`molecules__cardgrid__card__element--${card.title}`}
key={`molecules__cardgrid__card__element--${card.title}--${id}`}
onLike={onLikeCard}
{...card}
theme={theme}
Expand Down

0 comments on commit fffa147

Please sign in to comment.