diff --git a/packages/web/src.ts/index.ts b/packages/web/src.ts/index.ts index a82c9dc1a..e6761165c 100644 --- a/packages/web/src.ts/index.ts +++ b/packages/web/src.ts/index.ts @@ -79,8 +79,6 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr let allow304 = false; let timeout = 2 * 60 * 1000; - let throttle = 25; - if (options.throttleLimit) { throttle = options.throttleLimit; } if (typeof(connection) === "string") { url = connection; @@ -156,9 +154,6 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr return { promise, cancel }; })(); - if (throttle == 100) { - console.log(throttle); - } const runningFetch = (async function() {