diff --git a/components/trade/UnsettledTrades.tsx b/components/trade/UnsettledTrades.tsx index f7b8a94e..e4fc441c 100644 --- a/components/trade/UnsettledTrades.tsx +++ b/components/trade/UnsettledTrades.tsx @@ -162,18 +162,22 @@ const UnsettledTrades = ({
-
- {unsettledSpotBalances[mktAddress].base || 0.0}{' '} - - {base} - -
-
- {unsettledSpotBalances[mktAddress].quote || 0.0}{' '} - - {quote} - -
+ {unsettledSpotBalances[mktAddress].base ? ( +
+ {unsettledSpotBalances[mktAddress].base}{' '} + + {base} + +
+ ) : null} + {unsettledSpotBalances[mktAddress].quote ? ( +
+ {unsettledSpotBalances[mktAddress].quote}{' '} + + {quote} + +
+ ) : null}