This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: "added by" skeleton

+6 -13
+6 -13
src/webapp/features/semble/containers/sembleLibrariesContainer/Skeleton.SembleLibrariesContainer.tsx
··· 1 - import { Grid, GridCol } from '@mantine/core'; 1 + import { Grid, GridCol, Stack } from '@mantine/core'; 2 2 import ProfileCardSkeleton from '@/features/profile/components/profileCard/Skeleton.ProfileCard'; 3 3 4 4 export default function SembleLibrariesContainerSkeleton() { 5 5 return ( 6 - <Grid gutter="xs"> 7 - <GridCol 8 - span={{ 9 - base: 12, 10 - }} 11 - > 12 - <ProfileCardSkeleton /> 13 - <ProfileCardSkeleton /> 14 - <ProfileCardSkeleton /> 15 - <ProfileCardSkeleton /> 16 - </GridCol> 17 - </Grid> 6 + <Stack gap={'xs'}> 7 + {Array.from({ length: 8 }).map((_, i) => ( 8 + <ProfileCardSkeleton key={i} /> 9 + ))} 10 + </Stack> 18 11 ); 19 12 }