Skip to content

Commit

Permalink
fix: Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Dec 7, 2024
1 parent 387ebf7 commit 762e25a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/crawlers/chrome-crawler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,12 @@ export async function crawlExtension(
userCountRow
.querySelectorAll("a")
.forEach((anchor: HTMLAnchorElement) => anchor.remove());
console.log(userCountRow.textContent);
const weeklyActiveUsers = (userCountRow.textContent as string)
// "XYZ+ users"
.replace(" users", "")
.replaceAll(",", "")
.replace("+", "")
.trim();
console.log(weeklyActiveUsers);

// ratingRow.outerHTML:
// <span>
Expand Down

0 comments on commit 762e25a

Please sign in to comment.