From f4819acc7cd4174319299987aa2f5b266c0d9dd8 Mon Sep 17 00:00:00 2001 From: Thomas Camlong Date: Thu, 2 Oct 2025 15:20:05 +0200 Subject: [PATCH] style: remove unnecessary empty line in icon-card - Clean up code formatting by removing extra blank line - Improve code consistency and readability --- web/src/components/icon-card.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/components/icon-card.tsx b/web/src/components/icon-card.tsx index 68dbb0ec..54c21fc5 100644 --- a/web/src/components/icon-card.tsx +++ b/web/src/components/icon-card.tsx @@ -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 linkHref = isCommunityIcon ? `/community/${name}` : `/icons/${name}` - return (