Upgrade dependencies (#479)
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:
Sebastien Castiel
2025-12-06 12:50:01 -05:00
committed by GitHub
parent 19c009f6b8
commit d3b151e150
23 changed files with 3835 additions and 2740 deletions

View File

@@ -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}