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: () => <ModrinthVersion[]>[] });
 }