From 0d76fa5eef7e14b6a325cd5d96c5fe0246cc4a23 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Tue, 7 Jun 2022 16:12:20 +0300 Subject: [PATCH] Codestyle fix --- src/utils/modrinth-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/modrinth-utils.ts b/src/utils/modrinth-utils.ts index 48ddb05..bee07c1 100644 --- a/src/utils/modrinth-utils.ts +++ b/src/utils/modrinth-utils.ts @@ -63,7 +63,7 @@ export function getVersions(idOrSlug: string, loaders?: string[], gameVersions?: } const response = fetch(`${baseUrl}/project/${idOrSlug}/version?${urlParams}`, token ? { - headers: { "Authorization": token } + headers: { Authorization: token } } : undefined); return processResponse(response, { 404: () => [] }); }