fix: recycler notifications

This commit is contained in:
siiky 2024-10-28 16:51:48 +00:00
parent 1395448e78
commit e7e104d6a0

View file

@ -125,7 +125,7 @@ const cryptoBalancesNotify = (cryptoWarnings) => {
const balancesNotify = (balances) => { const balancesNotify = (balances) => {
const isCryptoCode = c => _.includes(c, [HIGH_CRYPTO_BALANCE, LOW_CRYPTO_BALANCE]) const isCryptoCode = c => _.includes(c, [HIGH_CRYPTO_BALANCE, LOW_CRYPTO_BALANCE])
const isFiatCode = c => _.includes(c, [LOW_CASH_OUT, CASH_BOX_FULL]) const isFiatCode = c => _.includes(c, [LOW_CASH_OUT, CASH_BOX_FULL, LOW_RECYCLER_STACKER])
const by = o => const by = o =>
isCryptoCode(o) ? 'crypto' : isCryptoCode(o) ? 'crypto' :
isFiatCode(o) ? 'fiat' : isFiatCode(o) ? 'fiat' :