N-FIN-83: run 'next-async-request-api' codemod

This commit is contained in:
Markus Thielker 2024-12-24 12:50:44 +01:00
parent 59007f5973
commit 91de5a730c
No known key found for this signature in database

View file

@ -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({