diff --git a/src/client/components/ItemCard.tsx b/src/client/components/ItemCard.tsx index 974898a..a0c8a4a 100644 --- a/src/client/components/ItemCard.tsx +++ b/src/client/components/ItemCard.tsx @@ -60,6 +60,11 @@ export function ItemCard({ const openExternalLink = useUIStore((s) => s.openExternalLink); const duplicateItem = useDuplicateItem(); + const displayName = + brand && name.startsWith(`${brand} `) + ? name.slice(brand.length + 1) + : name; + const handleClick = linkTo === null ? undefined @@ -230,7 +235,7 @@ export function ItemCard({ )}