From b1b157fb8865349efe47b0f66331ae5b01b53807 Mon Sep 17 00:00:00 2001 From: Mandeep Tatla Date: Fri, 21 Jun 2024 15:43:20 +0930 Subject: [PATCH] Removed the footer changes --- components/layout/footer.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/layout/footer.tsx b/components/layout/footer.tsx index 3635a9b7c..ef1b1e8c7 100644 --- a/components/layout/footer.tsx +++ b/components/layout/footer.tsx @@ -3,7 +3,6 @@ import Link from 'next/link'; import FooterMenu from 'components/layout/footer-menu'; import LogoSquare from 'components/logo-square'; import { getMenu } from 'lib/shopify'; -import { RemoveTheDomainFromArray } from 'lib/utils'; import { Suspense } from 'react'; const { COMPANY_NAME, SITE_NAME } = process.env; @@ -13,7 +12,6 @@ export default async function Footer() { const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : ''); const skeleton = 'w-full h-6 animate-pulse rounded bg-neutral-200 dark:bg-neutral-700'; const menu = await getMenu('next-js-frontend-footer-menu'); - const updatedMenuLinks = RemoveTheDomainFromArray(menu); const copyrightName = COMPANY_NAME || SITE_NAME || ''; return ( @@ -37,7 +35,7 @@ export default async function Footer() { } > - +