From 01cbaab4985a78b10cd5a699c5c514f95c84f445 Mon Sep 17 00:00:00 2001 From: edic Date: Tue, 3 Feb 2026 15:26:41 +0100 Subject: [PATCH] Adapt params type again --- app/[locale]/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 880c822..01873bd 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -25,7 +25,7 @@ export default async function RootLayout({ params, }: Readonly<{ children: React.ReactNode; - params: { locale: string }; + params: Promise<{ locale?: string }>; }>) { const { locale } = await params;