diff --git a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx index 31d80f62..229e7b57 100644 --- a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx +++ b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx @@ -41,7 +41,7 @@ function WorkflowRun() { queryFn: async () => { const client = await getClient(credentialGetter); return client - .get(`/tasks?workflow_run_id=${workflowRunId}`) + .get(`/tasks?workflow_run_id=${workflowRunId}&page_size=200`) .then((response) => response.data); }, });