From 38b57d09557640e7928373ec01dd030775a9ddc7 Mon Sep 17 00:00:00 2001 From: wont-stream Date: Wed, 15 Jan 2025 13:08:15 -0500 Subject: [PATCH] Remove unused authorization header logic from fetch options in getTopLangs function --- index.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/index.ts b/index.ts index 97d2274..38251c8 100644 --- a/index.ts +++ b/index.ts @@ -6,17 +6,9 @@ type repo = { } type repos = repo[] -const fetchOpts: RequestInit = {} - -if (process.env.AuthorizationHeaderToken) { - fetchOpts.headers = { - "Authorization": `Bearer ${process.env.AuthorizationHeaderToken}` - } -} - const getTopLangs = async (type: "users" | "orgs", name: string) => { const obj: Record = {} - const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts); + const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`); const repos = await repoResp.json() as repos | { message: string }; if ("message" in repos) {