Skip to content

Commit 762e25a

Browse files
committed
fix: Remove logs
1 parent 387ebf7 commit 762e25a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/crawlers/chrome-crawler.ts

-2
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,12 @@ export async function crawlExtension(
5757
userCountRow
5858
.querySelectorAll("a")
5959
.forEach((anchor: HTMLAnchorElement) => anchor.remove());
60-
console.log(userCountRow.textContent);
6160
const weeklyActiveUsers = (userCountRow.textContent as string)
6261
// "XYZ+ users"
6362
.replace(" users", "")
6463
.replaceAll(",", "")
6564
.replace("+", "")
6665
.trim();
67-
console.log(weeklyActiveUsers);
6866

6967
// ratingRow.outerHTML:
7068
// <span>

0 commit comments

Comments
 (0)