Skip to content

Commit

Permalink
chore(inspector): Remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jan 3, 2024
1 parent a1da313 commit 1d685d6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/inspector/src/entrypoints/main.content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ function monkeyPatchXhr(options: {
if (this.readyState === this.DONE) {
if (this.responseType === 'blob') {
this.responseBody = await (this.response as Blob).text();
console.log(1, this.response);
} else {
console.log(2, this.responseText);
this.responseBody = this.responseText;
}
this.getAllResponseHeaders()
Expand Down

0 comments on commit 1d685d6

Please sign in to comment.