Commit 52849a8e authored by Ian Lapham's avatar Ian Lapham Committed by Noah Zinsmeister

Bug fix (#557)

* gate usd parsing on null balances

* remove logs
parent cb8f2d2d
......@@ -585,7 +585,7 @@ function CurrencySelectModal({ isOpen, onDismiss, onTokenSelect }) {
'-'
)}
<TokenRowUsd>
{usdBalance
{usdBalance && !usdBalance.isNaN()
? usdBalance.isZero()
? ''
: usdBalance.lt(0.01)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment