Skip to content

Commit

Permalink
Reduce console.log verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Mar 7, 2024
1 parent 8068de9 commit eaaa775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ChartsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const availablePairs = computed<string[]>(() => {
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);
Expand Down

0 comments on commit eaaa775

Please sign in to comment.