From 151b2d762fe58affbe4b220a5ccea936ef5d13a7 Mon Sep 17 00:00:00 2001 From: James Prado Date: Wed, 15 Nov 2017 00:47:03 -0500 Subject: [PATCH] display network name if balance loaded (#402) --- common/components/BalanceSidebar/AccountInfo.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/components/BalanceSidebar/AccountInfo.tsx b/common/components/BalanceSidebar/AccountInfo.tsx index a2cb63b502c..5971cf518ba 100644 --- a/common/components/BalanceSidebar/AccountInfo.tsx +++ b/common/components/BalanceSidebar/AccountInfo.tsx @@ -89,8 +89,10 @@ export default class AccountInfo extends React.Component { /> )} - {balance && !balance.isPending ? ( - {network.name} + {!balance.isPending ? ( + balance.wei ? ( + {network.name} + ) : null ) : null}