From 0c04c3dc1432d6e51867c057496f9aa3271a773d Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Thu, 16 May 2024 23:57:13 +0530 Subject: [PATCH] chore: unwanted loader (#4485) --- web/components/page-views/workspace-dashboard.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/components/page-views/workspace-dashboard.tsx b/web/components/page-views/workspace-dashboard.tsx index 85f671130..1635599ff 100644 --- a/web/components/page-views/workspace-dashboard.tsx +++ b/web/components/page-views/workspace-dashboard.tsx @@ -67,7 +67,7 @@ export const WorkspaceDashboardView = observer(() => { )} - {homeDashboardId && joinedProjectIds ? ( + {homeDashboardId && joinedProjectIds && ( <> {joinedProjectIds.length > 0 ? ( <> @@ -95,10 +95,6 @@ export const WorkspaceDashboardView = observer(() => { /> )} - ) : ( -
- -
)} );