We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a95b16b commit b078691Copy full SHA for b078691
addon/src/wait-for-fetch.ts
@@ -12,7 +12,6 @@ export async function waitForFetch(fetchPromise: ReturnType<typeof fetch>) {
12
['json', 'text', 'arrayBuffer', 'blob', 'formData', 'bytes'].includes(prop)
13
) {
14
return (...args: unknown[]) => {
15
- console.log('invoke', ...args);
16
return waitForPromise(original.call(target, ...args));
17
};
18
}
0 commit comments