From 04edfc57c36cdda75825228a8d4cd12c7749ae18 Mon Sep 17 00:00:00 2001 From: "Ng Wing Tat, David" Date: Fri, 24 Jan 2025 01:51:09 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Limit=20items=20per=20page?= =?UTF-8?q?=20for=20bookstore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/util/api/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/api/index.js b/src/util/api/index.js index 92786bd3a..b4d7910f4 100644 --- a/src/util/api/index.js +++ b/src/util/api/index.js @@ -612,7 +612,7 @@ export const fetchBookstoreCMSTags = ({ limit = 100 } = {}) => export const fetchBookstoreCMSProductsByTagId = ( tagId, - { offset, t = BOOKSTORE_CMS_CACHE_RESET_TIMESTAMP, limit = 100 } = {} + { offset, t = BOOKSTORE_CMS_CACHE_RESET_TIMESTAMP, limit = 30 } = {} ) => { const qsPayload = { tag: tagId,