From 898f570a40d8463a2ad63bf0e59c8ea66d794f32 Mon Sep 17 00:00:00 2001 From: Mohammed Al-yaseen Date: Wed, 24 Dec 2025 15:58:31 +0300 Subject: [PATCH] menu: fixes --- .../menu/components/MenuList/ProductCard.tsx | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/pages/menu/components/MenuList/ProductCard.tsx b/src/pages/menu/components/MenuList/ProductCard.tsx index 35f14a4..c91952b 100644 --- a/src/pages/menu/components/MenuList/ProductCard.tsx +++ b/src/pages/menu/components/MenuList/ProductCard.tsx @@ -98,39 +98,39 @@ export default function ProductCard({ item, setIsBottomSheetOpen }: Props) { {isRTL ? item.nameOther : item.name} - - {item.description} - + {item.description && ( + + {item.description} + + )}