diff --git a/skyvern-frontend/src/routes/history/RunHistory.tsx b/skyvern-frontend/src/routes/history/RunHistory.tsx index 013c99ca..b64c3351 100644 --- a/skyvern-frontend/src/routes/history/RunHistory.tsx +++ b/skyvern-frontend/src/routes/history/RunHistory.tsx @@ -37,7 +37,7 @@ function RunHistory() { const page = searchParams.get("page") ? Number(searchParams.get("page")) : 1; const itemsPerPage = searchParams.get("page_size") ? Number(searchParams.get("page_size")) - : 5; + : 10; const [statusFilters, setStatusFilters] = useState>([]); const { data: runs, isFetching } = useRunsQuery({ page,