diff --git a/native/app/bungie/BungieApi.ts b/native/app/bungie/BungieApi.ts index 83f58afb4..c10f5dfc6 100644 --- a/native/app/bungie/BungieApi.ts +++ b/native/app/bungie/BungieApi.ts @@ -110,12 +110,8 @@ export async function getProfile(): Promise { } export function getJsonBlob(jsonUrl: string): Promise { - const requestOptions: RequestInit = { - method: "GET", - }; - return new Promise((resolve, reject) => { - fetch(jsonUrl, requestOptions) + fetch(jsonUrl) .then((response) => { if (!response.ok) { console.error(response);