Skip to content

Commit

Permalink
silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoseneca committed Mar 25, 2024
1 parent 89d768f commit cf8794d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ export const RoundOrHouseContentLoadingCard = () => {
<Col xl={8}>
{Array(5)
.fill(0)
.map(() => (
<Skeleton height={200} style={{ marginBottom: '12px' }} />
.map((item, index) => (
<Skeleton key={index} height={200} style={{ marginBottom: '12px' }} />
))}
</Col>
<Col>
Expand Down

0 comments on commit cf8794d

Please sign in to comment.