From 725b30b68bef092fd5beb509b1edfa2080640fde Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Sat, 3 Sep 2022 09:48:13 -0700 Subject: [PATCH] Increase page size to 12 --- web/pages/tournaments/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/tournaments/index.tsx b/web/pages/tournaments/index.tsx index e93d5844..c9827f72 100644 --- a/web/pages/tournaments/index.tsx +++ b/web/pages/tournaments/index.tsx @@ -223,7 +223,7 @@ const ImageCarousel = (props: { images: MarketImage[]; url: string }) => { const MarketCarousel = (props: { slug: string }) => { const { slug } = props const q = contractsByGroupSlugQuery(slug) - const { allItems, getNext, isLoading } = usePagination({ q, pageSize: 6 }) + const { allItems, getNext, isLoading } = usePagination({ q, pageSize: 12 }) return isLoading ? ( ) : (