From e047073ce07451d0984fb88565fd2a9cd91dffd0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 5 Nov 2025 07:12:12 +0000 Subject: [PATCH] completionId: cgen-87479be916654f4999cc7c1417293a31 cgen-87479be916654f4999cc7c1417293a31 --- client/pages/Dashboard.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 9c3adf19..a6f23f40 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -377,8 +377,7 @@ export default function Dashboard() { applicationsResult, achievementsResult, followerCountResult, - ] = await Promise.race([ - Promise.allSettled([ + ] = await Promise.allSettled([ // Projects aethexProjectService.getUserProjects(userId).catch(() => []), // Teams @@ -412,9 +411,7 @@ export default function Dashboard() { .eq("following_id", userId) .then(({ count }) => typeof count === "number" ? count : 0) .catch(() => 0), - ]), - timeoutPromise, - ]) as any[]; + ]); // Extract results from settled promises const userProjects = projectsResult.status === "fulfilled" ? projectsResult.value : [];