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) { ); })} - +
); }