Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit 56ca253

Browse files
committed
fix(stories): setting default per_page parameter to 100
1 parent 13a8f99 commit 56ca253

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/stories/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const fetchStories = async (
3131

3232
// Handle regular params with URLSearchParams
3333
const regularParams = new URLSearchParams({
34-
...objectToStringParams(restParams),
34+
...objectToStringParams({ ...restParams, per_page: 100 }),
3535
...(currentPage > 1 && { page: currentPage.toString() }),
3636
}).toString();
3737

0 commit comments

Comments
 (0)