From 95266c2072b411c01ae588b2c49b37a77047578e Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sat, 20 Dec 2025 00:13:42 +0100 Subject: [PATCH] TypeScript juhuuuu --- app/[locale]/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 2201634..a2d9af7 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -8,9 +8,9 @@ export const metadata: Metadata = { }; type Props = { - params: { + params: Promise<{ locale: string; - }, + }>, children: React.ReactNode; };