From e5b3cced1ff5d76f3a0f90efb2c3bdd18758c988 Mon Sep 17 00:00:00 2001 From: RockChinQ Date: Fri, 5 Jun 2026 11:33:02 -0400 Subject: [PATCH] feat(market): show 24 plugins per page --- .../plugins/components/plugin-market/PluginMarketComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx b/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx index 0012ff26..14a0b9bc 100644 --- a/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx +++ b/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx @@ -145,7 +145,7 @@ function MarketPageContent({ } }, [typeFilter, componentFilter, selectedTags, sortOption]); - const pageSize = 12; // 每页12个 + const pageSize = 24; // 每页24个 const searchTimeoutRef = useRef(null); const scrollContainerRef = useRef(null); const isComposingRef = useRef(false);