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.
1 parent 436058c commit d2c333eCopy full SHA for d2c333e
src/networkRequest.ts
@@ -7,7 +7,6 @@ export const networkRequest = async (
7
url: string,
8
): Promise<Record<string, unknown>> => {
9
const result = await retry(async () => {
10
- console.log(`Fetching ${url}`);
11
const result = await fetch(url);
12
const { status } = result;
13
0 commit comments