From 28c6bd46026510c53c5a31ce1c23afbf1574c193 Mon Sep 17 00:00:00 2001 From: Srujan Gurram Date: Mon, 14 Oct 2024 15:49:45 +0530 Subject: [PATCH] Update explorer limit to 30 in validate-wiki.ts --- src/lib/unstable-validate-wiki.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/unstable-validate-wiki.ts b/src/lib/unstable-validate-wiki.ts index 1f1c187..f824f3f 100644 --- a/src/lib/unstable-validate-wiki.ts +++ b/src/lib/unstable-validate-wiki.ts @@ -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("", { query, variables: { offset: 0, - limit: 50, + limit: 30, }, });