fix(dashboard): flash based on loading check (#2535)

This commit is contained in:
Vikhyath Mondreti
2025-12-22 18:49:41 -08:00
committed by GitHub
parent ab3a3d12fe
commit be9ab4c833

View File

@@ -537,7 +537,7 @@ export default function Dashboard({ logs, isLoading, error }: DashboardProps) {
}
}, [])
if (isLoading && Object.keys(allWorkflows).length === 0) {
if (isLoading) {
return <DashboardSkeleton />
}