From d2207530f9c1fd5938dd510b93aba562ee95fbdf Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 03:21:19 +0000 Subject: [PATCH] Dashboard: load invites cgen-127265357f824358b30bc1b786b625cd --- client/pages/Dashboard.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 32febd9b..07edf03e 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -352,6 +352,14 @@ export default function Dashboard() { setUserPosts([]); } + // Load invites + try { + const mine = await aethexSocialService.listInvites(user!.id); + setInvites(Array.isArray(mine) ? mine : []); + } catch { + setInvites([]); + } + // Load project applications (if table exists) try { const { data, error } = await supabase