Skip to content

Commit be9ab4c

Browse files
fix(dashboard): flash based on loading check (#2535)
1 parent ab3a3d1 commit be9ab4c

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/logs/components/dashboard

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/logs/components/dashboard/dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ export default function Dashboard({ logs, isLoading, error }: DashboardProps) {
537537
}
538538
}, [])
539539

540-
if (isLoading && Object.keys(allWorkflows).length === 0) {
540+
if (isLoading) {
541541
return <DashboardSkeleton />
542542
}
543543

0 commit comments

Comments
 (0)