Skip to content

Commit

Permalink
remove console spam from typings worker; closes #901
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika committed Sep 20, 2023
1 parent 72097e5 commit 6eb8adc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion projects/code-editor/src/lib/workers/typings-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const loadContent = async url => {
}

const response = await fetch(url);
console.log(response.status, url);

if (response.status >= 200 && response.status < 300) {
const text = await response.text();
Expand Down

0 comments on commit 6eb8adc

Please sign in to comment.