feat: enhance organization invitation UI and add organization details

This commit is contained in:
Mauricio Siu
2025-02-22 13:53:57 -06:00
parent c52725420e
commit 81a881b07e
3 changed files with 63 additions and 50 deletions

View File

@@ -144,6 +144,9 @@ export const userRouter = createTRPCRouter({
gt(invitation.expiresAt, new Date()),
eq(invitation.status, "pending"),
),
with: {
organization: true,
},
});
}),
});