From 1b3cc74f17c3b53ec3387c40208f4005d5838b69 Mon Sep 17 00:00:00 2001 From: aliceoq Date: Fri, 9 Feb 2024 11:48:06 -0300 Subject: [PATCH] fix(faq): show 5 items per page --- src/pages/faq/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/faq/index.tsx b/src/pages/faq/index.tsx index 21b36156..408fad87 100644 --- a/src/pages/faq/index.tsx +++ b/src/pages/faq/index.tsx @@ -36,7 +36,7 @@ const FaqPage: NextPage = ({ faqData, branch }) => { const intl = useIntl() const { setBranchPreview } = useContext(PreviewContext) setBranchPreview(branch) - const itemsPerPage = 10 + const itemsPerPage = 5 const [page, setPage] = useState({ curr: 1, total: 1 }) const [filters, setFilters] = useState([]) const [sortByValue, setSortByValue] = useState('newest')