diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimeline.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimeline.tsx index d2cdad89..9118c84f 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimeline.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimeline.tsx @@ -56,8 +56,6 @@ function WorkflowRunTimeline({ const workflowRunIsNotFinalized = statusIsNotFinalized(workflowRun); - const timeline = workflowRunTimeline.slice().reverse(); - const numberOfActions = workflowRunTimeline.reduce((total, current) => { if (isTaskVariantBlockItem(current)) { return total + current.block!.actions!.length; @@ -98,8 +96,10 @@ function WorkflowRunTimeline({ )} - {timeline.length === 0 &&