diff --git a/common/components/BalanceSidebar/AccountInfo.tsx b/common/components/BalanceSidebar/AccountInfo.tsx index c5f791ec..8c2c5a88 100644 --- a/common/components/BalanceSidebar/AccountInfo.tsx +++ b/common/components/BalanceSidebar/AccountInfo.tsx @@ -134,17 +134,21 @@ class AccountInfo extends React.Component { symbol={balance.wei ? network.name : null} /> - {balance.isPending ? ( - - ) : ( - !isOffline && ( - - ) + {balance.wei && ( + + {balance.isPending ? ( + + ) : ( + !isOffline && ( + + ) + )} + )}