make the default page size 10 (#3369)

This commit is contained in:
Shuchang Zheng
2025-09-04 21:48:15 -07:00
committed by GitHub
parent 39f0f364f0
commit 00a734a98a

View File

@@ -62,7 +62,7 @@ function Workflows() {
const page = searchParams.get("page") ? Number(searchParams.get("page")) : 1;
const itemsPerPage = searchParams.get("page_size")
? Number(searchParams.get("page_size"))
: 5;
: 10;
const { data: workflows = [], isLoading } = useQuery<
Array<WorkflowApiResponse>