From eaaa775af97aade84aaf6e273e06ab781c31b220 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 7 Mar 2024 06:25:01 +0100 Subject: [PATCH] Reduce console.log verbosity --- src/views/ChartsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ChartsView.vue b/src/views/ChartsView.vue index 6acb282f..1d9ee16c 100644 --- a/src/views/ChartsView.vue +++ b/src/views/ChartsView.vue @@ -53,7 +53,7 @@ const availablePairs = computed(() => { const tf = finalTimeframe.value; return botStore.activeBot.pairlistWithTimeframe .filter(([pair, timeframe]) => { - console.log(pair, timeframe, tf); + // console.log(pair, timeframe, tf); return timeframe === tf; }) .map(([pair]) => pair);