Skip to content

Commit

Permalink
fix(handbook): allow more than 25 entries
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeff95 committed Sep 16, 2024
1 parent 4bcc445 commit c20bb64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/pages/handbook/common/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export const getHandbookEntries = async (
starts_with: 'handbook',
cv: Date.now(),
version,
excluding_fields: EXCLUSIONS[context].join(',')
excluding_fields: EXCLUSIONS[context].join(','),
page: 1,
per_page: 100 // FIXME: allow more than 100 entries.
});

return res.data.stories as ISbStoryData<HandbookStoryblok>[];
Expand Down

0 comments on commit c20bb64

Please sign in to comment.