Skip to content

Commit 1bbb595

Browse files
Cleanup leftover logging.
1 parent f02360a commit 1bbb595

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

extension/scripts/features/profile-box/ttProfileBox.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1175,10 +1175,7 @@
11751175
.map((stat) => {
11761176
const them = stat.v2Getter(data);
11771177
const you = stat.v1Getter(userdata);
1178-
if (isNaN(them) || isNaN(you)) {
1179-
console.log("DKK stat", stat, them, you);
1180-
return false;
1181-
}
1178+
if (isNaN(them) || isNaN(you)) return false;
11821179

11831180
const row = {
11841181
stat: stat.name,

0 commit comments

Comments
 (0)