Skip to content

Commit

Permalink
Update explorer limit to 30 in validate-wiki.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Royal-lobster committed Oct 14, 2024
1 parent b66785f commit 28c6bd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/unstable-validate-wiki.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,12 @@ async function getExplorers() {
},
});

// TODO: make sure to fetch all explorers here. currently only fetching first 30 explorers
const { data } = await client.post<Explorer[]>("", {
query,
variables: {
offset: 0,
limit: 50,
limit: 30,
},
});

Expand Down

0 comments on commit 28c6bd4

Please sign in to comment.