From d8b09526fc93917bf55d382dedb8b791d806b6ef Mon Sep 17 00:00:00 2001 From: wont-stream Date: Wed, 15 Jan 2025 13:00:50 -0500 Subject: [PATCH] Refactor variable names for clarity in repository fetching logic --- index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index d28106f..876ac0e 100644 --- a/index.ts +++ b/index.ts @@ -16,10 +16,10 @@ if (process.env.AuthorizationHeaderToken) { const getTopLangs = async (type: "users" | "orgs", name: string) => { const obj: Record = {} - const userRepoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts); - const userRepos = await userRepoResp.json() as repos; + const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts); + const repos = await repoResp.json() as repos; - for (const repo of userRepos) { + for (const repo of repos) { const lang = repo.language; if (obj[lang] && lang !== "") {