Skip to content

Commit

Permalink
Add key to MarketplaceItemSkeleton component (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpalani authored Oct 25, 2022
1 parent 7b0b265 commit b882219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/marketplaceIsLoading/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const MarketplaceIsLoading = ({ items = 6, filter = true, containerClassNames =
marketplaceItems.push(i);
}

return marketplaceItems.map( () => <MarketplaceItemSkeleton /> );
return marketplaceItems.map( (item) => <MarketplaceItemSkeleton key={item}/> );
}

return (
Expand Down

0 comments on commit b882219

Please sign in to comment.