diff --git a/.yarn/cache/@headlessui-react-npm-1.7.16-039d64d731-85844c96c7.zip b/.yarn/cache/@headlessui-react-npm-1.7.16-039d64d731-85844c96c7.zip deleted file mode 100644 index e727fb718..000000000 Binary files a/.yarn/cache/@headlessui-react-npm-1.7.16-039d64d731-85844c96c7.zip and /dev/null differ diff --git a/.yarn/cache/@headlessui-react-npm-1.7.17-c3f120aed0-0cdb67747e.zip b/.yarn/cache/@headlessui-react-npm-1.7.17-c3f120aed0-0cdb67747e.zip new file mode 100644 index 000000000..a38510bfa Binary files /dev/null and b/.yarn/cache/@headlessui-react-npm-1.7.17-c3f120aed0-0cdb67747e.zip differ diff --git a/app/[locale]/about/layout.tsx b/app/[locale]/about/layout.tsx index 16fd7989e..790272de1 100644 --- a/app/[locale]/about/layout.tsx +++ b/app/[locale]/about/layout.tsx @@ -1,5 +1,3 @@ -import { Suspense } from 'react'; - export default function Layout({ children }: { children: React.ReactNode }) { - return {children}; + return <>{children}; } diff --git a/app/[locale]/about/page.tsx b/app/[locale]/about/page.tsx index 1fcfbe8b1..46cd14681 100644 --- a/app/[locale]/about/page.tsx +++ b/app/[locale]/about/page.tsx @@ -5,12 +5,8 @@ import Navbar from 'components/layout/navbar'; import { getCart, getPage, getProduct } from 'lib/shopify'; import { Product } from 'lib/shopify/types'; import { cookies } from 'next/headers'; -import { Suspense } from 'react'; import AboutNaraiDetail from './about-narai-detail'; -export const runtime = 'edge'; -export const revalidate = 43200; // 12 hours in seconds - const { SITE_NAME } = process.env; export const metadata = { @@ -43,9 +39,7 @@ export default async function Page({ params }: { params: { locale?: SupportedLoc - -