Skip to content

Commit

Permalink
fix(faq): show 5 items per page
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceoq committed Feb 9, 2024
1 parent c857384 commit 1b3cc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/faq/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const FaqPage: NextPage<Props> = ({ 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<string[]>([])
const [sortByValue, setSortByValue] = useState<SortByType>('newest')
Expand Down

0 comments on commit 1b3cc74

Please sign in to comment.