Don't show new candle messages

This commit is contained in:
Matthias 2022-12-06 06:27:25 +01:00
parent 1f6330da88
commit 52a98846da

View File

@ -829,7 +829,6 @@ export function createBotSubStore(botId: string, botName: string) {
const [pair, timeframe] = msg.data;
// TODO: check for active bot ...
if (pair === this.selectedPair) {
showAlert(`New Candle for ${pair}`, 'success');
// Reload pair candles
this.getPairCandles({ pair, timeframe, limit: 500 });
}