This repository has no description
0

Configure Feed

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

feat: lower recent collections filter button radius

+7 -4
+3
src/webapp/features/home/components/recentCollections/RecentCollections.tsx
··· 203 203 variant={filter === 'mine' ? 'filled' : 'light'} 204 204 color="gray" 205 205 size="xs" 206 + radius={'md'} 206 207 onClick={() => setFilter('mine')} 207 208 > 208 209 My Collections ··· 211 212 variant={filter === 'following' ? 'filled' : 'light'} 212 213 color="gray" 213 214 size="xs" 215 + radius={'md'} 214 216 onClick={() => setFilter('following')} 215 217 > 216 218 Following ··· 219 221 variant={filter === 'contributed' ? 'filled' : 'light'} 220 222 color="gray" 221 223 size="xs" 224 + radius={'md'} 222 225 onClick={() => setFilter('contributed')} 223 226 > 224 227 Contributed to
+3 -3
src/webapp/features/home/components/recentCollections/Skeleton.RecentCollections.tsx
··· 17 17 </Group> 18 18 19 19 <Group gap="xs"> 20 - <Skeleton w={110} h={30} radius={'xl'} /> 21 - <Skeleton w={82} h={30} radius={'xl'} /> 22 - <Skeleton w={109} h={30} radius={'xl'} /> 20 + <Skeleton w={110} h={30} radius={'md'} /> 21 + <Skeleton w={82} h={30} radius={'md'} /> 22 + <Skeleton w={109} h={30} radius={'md'} /> 23 23 </Group> 24 24 25 25 <SimpleGrid cols={{ base: 1, sm: 2, lg: 4 }} spacing="xs">
+1 -1
src/webapp/next-env.d.ts
··· 1 1 /// <reference types="next" /> 2 2 /// <reference types="next/image-types/global" /> 3 - import "./.next/types/routes.d.ts"; 3 + import "./.next/dev/types/routes.d.ts"; 4 4 5 5 // NOTE: This file should not be edited 6 6 // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.