Skip to content

Commit

Permalink
>:(
Browse files Browse the repository at this point in the history
  • Loading branch information
NatSquared committed Aug 16, 2024
1 parent d3d3862 commit 0112a7c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ const TeamMemberList = () => {
const TeamMemberListSkeleton = () => {
return (
<>
{Array.from({ length: 3 }).map((_, index) => (
<Grid item container spacing={2} alignItems="center">
{[1, 2, 3].map((value) => (
<Grid item container spacing={2} alignItems="center" key={value}>
<Grid item>
<Skeleton variant="circular" width={32} height={32} />
</Grid>
Expand Down

0 comments on commit 0112a7c

Please sign in to comment.