Browse Source

fix

pull/760/head
Jorrin 2 years ago
parent
commit
4bdb95ed0f
  1. 4
      src/backend/providers/fetchers.ts

4
src/backend/providers/fetchers.ts

@ -57,9 +57,7 @@ export function makeExtensionFetcher() {
const fetcher: Fetcher = async (url, ops) => { const fetcher: Fetcher = async (url, ops) => {
return sendExtensionRequest({ return sendExtensionRequest({
url, url,
method: ops?.method ?? "GET", ...ops,
headers: ops?.headers,
body: ops?.body,
}) as any; }) as any;
}; };
return fetcher; return fetcher;

Loading…
Cancel
Save