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 436058c + d2c333e commit 445f02aCopy full SHA for 445f02a
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