Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostOf0days authored May 13, 2024
1 parent 1663536 commit c77977e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function ListPage({
return (
<Grid container spacing={2}>
{Array.from({ length: 36 }).map((_, index) => (
<EateryCardSkeleton key={index} />
<EateryCardSkeleton key={`skeleton-${index}`} />
))}
</Grid>
);
Expand Down

0 comments on commit c77977e

Please sign in to comment.