diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 0546880c4..7c8240522 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -3,7 +3,7 @@ import Header from 'components/layout/header/header'; import { NextIntlClientProvider } from 'next-intl'; import { Inter } from 'next/font/google'; import { notFound } from 'next/navigation'; -import { ReactNode } from 'react'; +import { ReactNode, Suspense } from 'react'; import { supportedLanguages } from '../../i18n-config'; import './globals.css'; @@ -58,8 +58,12 @@ export default async function LocaleLayout({ children, params: { locale } }: Loc