From f83c46d1c7549f8d17a83311ebcc3c1af7448302 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 23 Nov 2025 21:51:48 +0200 Subject: [PATCH] fix(client/promoted_attributes): unnecessary space when empty --- apps/client/src/widgets/PromotedAttributes.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/PromotedAttributes.tsx b/apps/client/src/widgets/PromotedAttributes.tsx index f24cd7d60..56807bd14 100644 --- a/apps/client/src/widgets/PromotedAttributes.tsx +++ b/apps/client/src/widgets/PromotedAttributes.tsx @@ -42,14 +42,14 @@ export default function PromotedAttributes() { return (
-
+ {cells && cells.length > 0 &&
{note && cells?.map(cell => )} -
+
}
); }