chore: unwanted loader (#4485)

This commit is contained in:
Anmol Singh Bhatia 2024-05-16 23:57:13 +05:30 committed by GitHub
parent 26188f208b
commit 0c04c3dc14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,7 +67,7 @@ export const WorkspaceDashboardView = observer(() => {
<TourRoot onComplete={handleTourCompleted} />
</div>
)}
{homeDashboardId && joinedProjectIds ? (
{homeDashboardId && joinedProjectIds && (
<>
{joinedProjectIds.length > 0 ? (
<>
@ -95,10 +95,6 @@ export const WorkspaceDashboardView = observer(() => {
/>
)}
</>
) : (
<div className="grid h-full w-full place-items-center">
<LogoSpinner />
</div>
)}
</>
);