Skip to content

Commit 06e3e5f

Browse files
committed
Update layout.tsx
1 parent 0457f4f commit 06e3e5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/core/src/app/[lang]/(store)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default async function StoreLayout({
4141
params,
4242
}: {
4343
children: ReactNode;
44-
params: { lang: string };
44+
params: Promise<{ lang: string }>;
4545
}) {
4646
const resolvedParams = await params;
4747
const lang = resolvedParams?.lang;

0 commit comments

Comments
 (0)