This repository has no description
0

Configure Feed

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

feat: revert source card preview image size

+3 -3
+3 -3
src/webapp/features/connections/components/addConnectionDrawer/SourceCardPreview.tsx
··· 19 19 return ( 20 20 <Card withBorder component="article" p={'xs'} radius={'lg'}> 21 21 <Group gap="xs" wrap="nowrap"> 22 - <Skeleton width={42} height={42} radius={'md'} /> 22 + <Skeleton width={45} height={45} radius={'md'} /> 23 23 <Stack gap={0} style={{ flex: 1 }}> 24 24 <Skeleton height={21.5} width="80%" radius="sm" /> 25 25 <Skeleton height={18.5} width="60%" radius="sm" mt={4} /> ··· 56 56 src={data.metadata.imageUrl} 57 57 alt={`${data.metadata.title} social preview image`} 58 58 radius={'md'} 59 - w={42} 60 - h={42} 59 + w={45} 60 + h={45} 61 61 style={{ flexShrink: 0 }} 62 62 /> 63 63 )}