Skip to content

Commit

Permalink
Fix account balance underline & spacing (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-prado authored and dternyak committed Nov 15, 2017
1 parent 0d5d0ce commit 05a9770
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/components/BalanceSidebar/AccountInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 05a9770

Please sign in to comment.