From 1e3987f54d036ff9425d5427628692f6f721c273 Mon Sep 17 00:00:00 2001 From: ManikantaMandala Date: Wed, 9 Oct 2024 17:33:49 +0530 Subject: [PATCH] fix: Inconsistent padding in the accordion in responsive conditions it fixes #3250 --- components/navigation/MenuBlocks.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/navigation/MenuBlocks.tsx b/components/navigation/MenuBlocks.tsx index 1f239ba8b17..8aff30b6e63 100644 --- a/components/navigation/MenuBlocks.tsx +++ b/components/navigation/MenuBlocks.tsx @@ -28,7 +28,7 @@ export default function MenuBlocks({ items = [] }: MenuBlocksProps) { const router = useRouter(); return ( - <> +
{items.map((item, index) => { const isExternalHref = item.href && item.href.startsWith('http'); @@ -66,6 +66,6 @@ export default function MenuBlocks({ items = [] }: MenuBlocksProps) { ); })} - +
); }