diff --git a/skyvern-frontend/src/routes/workflows/hooks/useWorkflowRunsQuery.ts b/skyvern-frontend/src/routes/workflows/hooks/useWorkflowRunsQuery.ts index 36aeae63..e03095cf 100644 --- a/skyvern-frontend/src/routes/workflows/hooks/useWorkflowRunsQuery.ts +++ b/skyvern-frontend/src/routes/workflows/hooks/useWorkflowRunsQuery.ts @@ -26,7 +26,7 @@ function useWorkflowRunsQuery({ const credentialGetter = useCredentialGetter(); return useQuery>({ - queryKey: ["workflowRuns", { statusFilters }, workflowPermanentId], + queryKey: ["workflowRuns", { statusFilters }, workflowPermanentId, page], queryFn: async () => { const client = await getClient(credentialGetter); const params = new URLSearchParams();