From 077b5ef3c7d495b29bc3c61fb740fec4e8456f79 Mon Sep 17 00:00:00 2001 From: karooolis Date: Sun, 17 Nov 2024 14:23:49 +0700 Subject: [PATCH] contributors count --- docs/app/api/contributors/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/app/api/contributors/route.ts b/docs/app/api/contributors/route.ts index d9eec44c93..3fd3655872 100644 --- a/docs/app/api/contributors/route.ts +++ b/docs/app/api/contributors/route.ts @@ -7,6 +7,7 @@ export async function GET() { const response = await octokit.request("GET /repos/{owner}/{repo}/contributors", { owner: "latticexyz", repo: "mud", + per_page: 1000, }); const allContributors = response.data;