From 91de5a730c1f0cb961cda32d6ade575b888b93e1 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Tue, 24 Dec 2024 12:50:44 +0100 Subject: [PATCH] N-FIN-83: run 'next-async-request-api' codemod --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ace7b66..bfdb07d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,11 +15,11 @@ export type EntityNumber = { value: number, } -export default async function DashboardPage(props: { searchParams?: { scope: ScopeType } }) { +export default async function DashboardPage(props: { searchParams?: Promise<{ scope: ScopeType }> }) { const {user} = await getSession() as Session; - const scope = Scope.of(props.searchParams?.scope || ScopeType.ThisMonth); + const scope = Scope.of((await props.searchParams)?.scope || ScopeType.ThisMonth); // get all payments in the current scope const payments = await prisma.payment.findMany({