form action redirects user to tjhe appropriate year

This commit is contained in:
2024-01-17 15:47:55 +01:00
parent 119d64344f
commit 0eb11e7d02
18 changed files with 158 additions and 86 deletions

View File

@@ -7,14 +7,14 @@ export default async function Page({ params:{ id } }: { params: { id:string } })
const [locationID, billID] = id.split('-');
const bill = await fetchBillById(locationID, billID);
const [location, bill] = await fetchBillById(locationID, billID) ?? [];
if (!bill) {
return(notFound());
}
return (
<Main>
<BillEditForm locationID={locationID} bill={bill} />
<BillEditForm locationID={locationID} bill={bill} billYear={location?.yearMonth.year} />
</Main>
);
}