From 91181d7bf191c1580bca7702bc171a4e900f82fc Mon Sep 17 00:00:00 2001 From: Vito0912 <86927734+Vito0912@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:45:48 +0100 Subject: [PATCH] remove console.log --- client/components/stats/Heatmap.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/client/components/stats/Heatmap.vue b/client/components/stats/Heatmap.vue index 55697985a..e6f3684f9 100644 --- a/client/components/stats/Heatmap.vue +++ b/client/components/stats/Heatmap.vue @@ -203,7 +203,6 @@ export default { for (let i = 0; i < wholeYearDays; i++) { const date = i === 0 ? wholeYear : this.$addDaysToDate(wholeYear, i) const dateString = this.$formatJsDate(date, 'yyyy-MM-dd') - console.log(dateString) if ((this.daysListening[dateString] || 0) > 0) { this.daysListenedInTheLastYear++ }