Fix account balance underline & spacing (#401)

This commit is contained in:
James Prado 2017-11-15 00:12:10 -05:00 committed by Daniel Ternyak
parent 0d5d0cea9a
commit 05a9770a9b
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ export default class AccountInfo extends React.Component<Props, State> {
/>
)}
</span>
{balance ? `${network.name}` : null}
{balance && !balance.isPending ? (
<span> {network.name}</span>
) : null}
</li>
</ul>
</div>