We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed7fa45 + 2a9be35 commit 338331aCopy full SHA for 338331a
frontend/app/src/liquity-governance.ts
@@ -246,9 +246,7 @@ export function useKnownInitiatives() {
246
if (KNOWN_INITIATIVES_URL === undefined) {
247
throw new Error("KNOWN_INITIATIVES_URL is not defined");
248
}
249
- const response = await fetch(KNOWN_INITIATIVES_URL, {
250
- headers: { "Content-Type": "application/json" },
251
- });
+ const response = await fetch(KNOWN_INITIATIVES_URL);
252
return v.parse(KnownInitiativesSchema, await response.json());
253
},
254
enabled: KNOWN_INITIATIVES_URL !== undefined,
0 commit comments