Skip to content

Commit b620dee

Browse files
committed
Show last 50 changelogs in portal instead of last 100 (#5423)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on modifying the parameters for fetching changelog entries in the `ghost.ts` file, specifically adjusting the limit of results returned. ### Detailed summary - Changed the `-limit` parameter from `100` to `50` to reduce the number of results fetched. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 5218313 commit b620dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/portal/src/app/changelog/ghost.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export async function fetchChangeLogs() {
88
key: GHOST_THIRDWEB_BLOG_KEY,
99
fields: ["title", "slug", "published_at"].join(","),
1010
filter: "tag:changelog",
11-
limit: "100",
11+
limit: "50",
1212
order: "published_at DESC",
1313
include: ["authors", "tags"].join(","),
1414
})

0 commit comments

Comments
 (0)