Use tRPC in other group pages (#249)

* Use tRPC in group edition + group layout

* Use tRPC in group modals

* Use tRPC in group stats

* Use tRPC in group activity
This commit is contained in:
Sebastien Castiel
2024-10-19 21:29:53 -04:00
committed by GitHub
parent 66e15e419e
commit 210c12b7ef
35 changed files with 709 additions and 498 deletions

View File

@@ -15,5 +15,5 @@ export default async function GroupPage({
const group = await cached.getGroup(groupId)
if (!group) notFound()
return <BalancesAndReimbursements group={group} />
return <BalancesAndReimbursements groupId={groupId} />
}