mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-11 06:19:06 +01:00
Upgrade dependencies (#479)
All checks were successful
CI / checks (push) Successful in 1m7s
All checks were successful
CI / checks (push) Successful in 1m7s
Migrate to latest versions of Next.js, React, Radix, etc.
This commit is contained in:
committed by
GitHub
parent
19c009f6b8
commit
d3b151e150
@@ -7,10 +7,11 @@ export const metadata: Metadata = {
|
||||
}
|
||||
|
||||
export default async function EditExpensePage({
|
||||
params: { groupId, expenseId },
|
||||
params,
|
||||
}: {
|
||||
params: { groupId: string; expenseId: string }
|
||||
params: Promise<{ groupId: string; expenseId: string }>
|
||||
}) {
|
||||
const { groupId, expenseId } = await params
|
||||
return (
|
||||
<EditExpenseForm
|
||||
groupId={groupId}
|
||||
|
||||
Reference in New Issue
Block a user