Skip to content

Commit

Permalink
fix: expand members api's per_page (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
sor4chi authored Apr 23, 2024
1 parent 1263f0e commit 0fd2db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/app/routes/cb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const loader: LoaderFunction = async ({ context, request }) => {

const { data: maximumMembers } = await appOctokit.request(
'GET /orgs/{org}/members',
{ org: 'saitamau-maximum' },
{ org: 'saitamau-maximum', per_page: 100 },
)

const isMember = maximumMembers.some(member => member.id === user.id)
Expand Down

0 comments on commit 0fd2db7

Please sign in to comment.