Skip to content

Commit

Permalink
fix: 🐛 set unique shop card key
Browse files Browse the repository at this point in the history
  • Loading branch information
lucca180 committed Feb 3, 2025
1 parent f844cfd commit ebed004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/restock/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const RestockHub: NextPageWithLayout<any> = (props: RestockHubProps) => {
</Heading>
<Flex flexFlow="row" flexWrap="wrap" gap={3} justifyContent={'center'}>
{trendingShops.map((shop) => (
<ShopCard key={shop.id} shop={shop} />
<ShopCard key={shop.id + '_trending'} shop={shop} />
))}
</Flex>
</>
Expand Down

0 comments on commit ebed004

Please sign in to comment.