Skip to content

Commit 76ea490

Browse files
committed
rm console logs
1 parent 48afe3b commit 76ea490

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/content-script/get-user-code.ts

-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
// Read the users code and examples from the Leetcode problem page
1010
function getCode() {
11-
console.log('getting code');
12-
13-
1411
let textArray = []
1512

1613
// Add the test cases & examples
@@ -33,7 +30,6 @@ function getCode() {
3330
}
3431
}
3532

36-
console.log('heres the text array', textArray);
3733
return textArray;
3834
}
3935

src/content-script/update-description-tab.ts

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ function showExamples() {
1313
let preTags = examples.getElementsByTagName('pre');
1414
if (preTags) {
1515
for (let tag of preTags) {
16-
console.log(tag);
1716
tag.style.display = showExamples ? 'block' : 'none';
1817
}
1918
}

src/problems-by-company/company.ts

-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,6 @@ function addCompanyProblems(sortMethod: string) {
173173
solutions.length = 0;
174174
solutions.push(...allSolutions);
175175

176-
console.log(solutions);
177-
178176
// Rebuild the table with sorted solutions
179177
rebuildTable();
180178
});

0 commit comments

Comments
 (0)