From 90c72d84b74b8e32a6e9adae4db858846bd87807 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 4 Sep 2025 22:25:47 -0700 Subject: [PATCH] make the default page size 10 for the run history (#3370) --- skyvern-frontend/src/routes/history/RunHistory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,