fix: remove forgotten character

This commit is contained in:
Sonny
2024-11-15 18:17:38 +01:00
parent c989772b04
commit aef2db6071

View File

@@ -36,7 +36,12 @@ export default function CollectionItem({
title={collection.name} title={collection.name}
> >
<FolderIcon className={classes.linkIcon} /> <FolderIcon className={classes.linkIcon} />
<Text lineClamp={1} maw={'200px'} style={{ wordBreak: 'break-all' }}> <Text
lineClamp={1}
maw={'200px'}
w="100%"
style={{ wordBreak: 'break-all' }}
>
{collection.name} {collection.name}
</Text> </Text>
{showLinks && ( {showLinks && (
@@ -45,7 +50,7 @@ export default function CollectionItem({
c="var(--mantine-color-gray-5)" c="var(--mantine-color-gray-5)"
ml={4} ml={4}
> >
{linksCount}0 {linksCount}
</Text> </Text>
)} )}
</Link> </Link>