style: remove unnecessary empty line in icon-card

- Clean up code formatting by removing extra blank line
- Improve code consistency and readability
This commit is contained in:
Thomas Camlong
2025-10-02 15:20:05 +02:00
parent c471b87436
commit f4819acc7c

View File

@@ -12,7 +12,6 @@ export function IconCard({ name, data: iconData, matchedAlias }: { name: string;
const imageUrl = isCommunityIcon ? iconData.base : `${BASE_URL}/${iconData.base}/${iconData.colors?.light || name}.${iconData.base}` const imageUrl = isCommunityIcon ? iconData.base : `${BASE_URL}/${iconData.base}/${iconData.colors?.light || name}.${iconData.base}`
const linkHref = isCommunityIcon ? `/community/${name}` : `/icons/${name}` const linkHref = isCommunityIcon ? `/community/${name}` : `/icons/${name}`
return ( return (
<MagicCard className="rounded-md shadow-md"> <MagicCard className="rounded-md shadow-md">
<Link prefetch={false} href={linkHref} className="group flex flex-col items-center p-3 sm:p-4 cursor-pointer"> <Link prefetch={false} href={linkHref} className="group flex flex-col items-center p-3 sm:p-4 cursor-pointer">