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) {