N-FIN-83: run 'next-async-request-api' codemod
This commit is contained in:
parent
59007f5973
commit
91de5a730c
1 changed files with 2 additions and 2 deletions
|
@ -15,11 +15,11 @@ export type EntityNumber = {
|
||||||
value: number,
|
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 {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
|
// get all payments in the current scope
|
||||||
const payments = await prisma.payment.findMany({
|
const payments = await prisma.payment.findMany({
|
||||||
|
|
Loading…
Add table
Reference in a new issue