diff --git a/src/lib/github.ts b/src/lib/github.ts index bb8443bb..3b36fa39 100644 --- a/src/lib/github.ts +++ b/src/lib/github.ts @@ -9,7 +9,7 @@ export const getProjectContributors = async ( repo: string, top: number = 4 ): Promise => { - const topContributors = await getGithubRepoContributors(owner, repo, 4); + const topContributors = await getGithubRepoContributors(owner, repo, top); const projectContributors = Promise.all( topContributors.map(async (contributor) => { const user = await octokit.rest.users.getByUsername({