This repository has no description
0

Configure Feed

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

feat: don't conditionally show collection creation button on recent collections

+10 -12
+10 -12
src/webapp/features/home/components/recentCollections/RecentCollections.tsx
··· 180 180 <Title order={2}>Collections</Title> 181 181 </Group> 182 182 <Group gap="xs"> 183 - {filter === 'mine' && ( 184 - <ActionIcon 185 - variant="light" 186 - color="blue" 187 - size={38} 188 - radius={'xl'} 189 - onClick={() => setShowCollectionDrawer(true)} 190 - aria-label="Create collection" 191 - > 192 - <FiPlus size={18} /> 193 - </ActionIcon> 194 - )} 183 + <ActionIcon 184 + variant="light" 185 + color="blue" 186 + size={38} 187 + radius={'xl'} 188 + onClick={() => setShowCollectionDrawer(true)} 189 + aria-label="Create collection" 190 + > 191 + <FiPlus size={18} /> 192 + </ActionIcon> 195 193 <LinkButton variant="light" color="blue" href={viewAllHref}> 196 194 View all 197 195 </LinkButton>