From 1e314ce149ed97446de82286781088fd9f6618ac Mon Sep 17 00:00:00 2001 From: Celal Zamanoglu <95054566+celalzamanoglu@users.noreply.github.com> Date: Wed, 7 Jan 2026 00:40:42 +0300 Subject: [PATCH] fix wrong screenshot (#4400) --- skyvern-frontend/src/routes/tasks/detail/hooks/useActions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern-frontend/src/routes/tasks/detail/hooks/useActions.ts b/skyvern-frontend/src/routes/tasks/detail/hooks/useActions.ts index 2a60fbac..3185a0c0 100644 --- a/skyvern-frontend/src/routes/tasks/detail/hooks/useActions.ts +++ b/skyvern-frontend/src/routes/tasks/detail/hooks/useActions.ts @@ -115,7 +115,7 @@ function useActions({ id }: Props): { return actions; }) .flat() - : taskActions?.map((action) => { + : taskActions?.map((action, index) => { return { reasoning: action.reasoning ?? "", confidence: action.confidence_float ?? undefined, @@ -125,7 +125,7 @@ function useActions({ id }: Props): { action.status === Status.Completed || action.status === Status.Skipped, stepId: action.step_id ?? "", - index: action.action_order ?? 0, + index: index, created_by: action.created_by, }; });