Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 2afc588

Browse files
committed
Remove debug log from contributors site
1 parent 553f038 commit 2afc588

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/contribute/contributors.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@
2525
data.forEach(entry => {
2626
if (!BLACKLIST.includes(entry.login)) {
2727
if (!(entry.login in contributors)) {
28-
console.log(typeof entry.login)
2928
contributors[entry.login] = {
3029
avatar_url: entry.avatar_url,
3130
html_url: entry.html_url,
3231
contributions: 0
3332
}
3433
}
35-
contributors[entry.login].contributions += entry.contributions
34+
contributors[entry.login].contributions += entry.contributions
3635
}
3736
})
3837
}

0 commit comments

Comments
 (0)