From 80b0bf6beff01ff26801fdde0ca34f85819c67d7 Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Tue, 23 Jul 2024 16:07:59 -0700 Subject: [PATCH] set default page size to 200 for getting tasks for a workflow run (#634) --- skyvern-frontend/src/routes/workflows/WorkflowRun.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }, });