Skip to content

Commit

Permalink
corrected jasons code
Browse files Browse the repository at this point in the history
  • Loading branch information
zmattes04 committed Jun 4, 2024
1 parent c1b2c13 commit f29dc43
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/pages/MyGroupsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,13 @@ const GroupPage: React.FC<Props> = ({
const col = ind % gridDims[1];
return (
<GridItem w="100%" h="100%" key={`skelly${id}`}>
<SkeletonGroup width="100%" height="100%" />
<SkeletonGroup width="100%" height="100%"
corners={[
row === 0 || col === 0,
row === 0 || col === gridDims[1] - 1,
row === gridDims[0] - 1 || col === gridDims[1] - 1,
row === gridDims[0] - 1 || col === 0,
]}/>
</GridItem>
);
})
Expand Down

0 comments on commit f29dc43

Please sign in to comment.