Skip to content

Commit

Permalink
removed some console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan-Serli committed Dec 3, 2024
1 parent 4d91c70 commit 2c6add4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/graphs.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ export function lineChartPlayerOfTheWeek(sessions, teams) {
}
}

console.log(map_player_time_played);
return { labels_dates, map_player_time_played };
}

Expand Down
1 change: 0 additions & 1 deletion src/renderer/src/components/SessionsHistory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ function init() {
session_copy = session_copy.filter(
(s) => s.date.seconds * 1000 >= last_week.getTime(),
);
console.log(session_copy.value);
} else if (props.historySize) {
session_copy = session_copy.slice(0, props.historySize);
}
Expand Down

0 comments on commit 2c6add4

Please sign in to comment.