add filter currencies set
This commit is contained in:
parent
80cf25ff84
commit
f000161202
|
@ -33,9 +33,10 @@ function mapToCurrencyFormat(currency) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const omitCurrencies = new Set(['ETH', 'OMG'])
|
||||||
function currencyFilter(currency) {
|
function currencyFilter(currency) {
|
||||||
if (isNil(currency)) return false
|
if (isNil(currency)) return false
|
||||||
if (currency.symbol === 'ETH') return false
|
if (omitCurrencies.has(currency.symbol)) return false
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue