diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 933b36ae..bb01787d 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -1396,6 +1396,53 @@ export default function Dashboard() { + + {/* Teams & Invitations */} +
+ + + My Teams + Your memberships + + + {teams.length === 0 ? ( +
No teams yet.
+ ) : ( + teams.slice(0, 6).map((t: any) => { + const team = (t as any).teams || t; + return ( +
+
{team.name}
+ +
+ ); + }) + )} +
+
+ + + + Invitations + Recent invites you sent + + + {invites.length === 0 ? ( +
No invites yet.
+ ) : ( + invites.slice(0, 6).map((inv: any) => ( +
+
+
{inv.invitee_email}
+
{inv.status}
+
+ +
+ )) + )} +
+
+