From e5390ca21869a3da8a9897a1e82d5582ccd17b57 Mon Sep 17 00:00:00 2001 From: Przemek Date: Thu, 11 Jul 2024 09:39:27 +0200 Subject: [PATCH] footer fix --- src/components/_App/Footer/index.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/components/_App/Footer/index.tsx b/src/components/_App/Footer/index.tsx index fefc89dd..63aa988c 100644 --- a/src/components/_App/Footer/index.tsx +++ b/src/components/_App/Footer/index.tsx @@ -232,15 +232,17 @@ const Footer = () => {
{chunkArray(pages.list, 4).map((chunk: PageListItem[]) => (
- {chunk.map((page: PageListItem) => ( - - {page.title} - - ))} + {chunk + .filter((page: PageListItem) => !page.slug.includes("mobile")) + .map((page: PageListItem) => ( + + {page.title} + + ))}
))}