Skip to content

Commit 4015123

Browse files
committed
4878 - SF
1 parent b91ac35 commit 4015123

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

client/src/pages/automation/project-deployments/ProjectDeployments.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,11 @@ const ProjectDeployments = () => {
243243
)
244244
)}
245245

246-
{projectDeploymentsIsLoading && projectDeployments && projectDeployments.length > 0 && (
247-
<ProjectDeploymentsSkeleton />
248-
)}
246+
{projectDeploymentsIsLoading &&
247+
projectDeployments &&
248+
(projectDeployments as ProjectDeployment[]).length > 0 && (
249+
<ProjectDeploymentsSkeleton />
250+
)}
249251

250252
<ReadOnlyWorkflowSheet />
251253
</WorkflowReadOnlyProvider>

0 commit comments

Comments
 (0)