1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-02-17 18:42:01 +00:00

fix: account summary default view

This commit is contained in:
Szymon Lesisz 2018-09-12 13:06:26 +02:00
parent 5babe75cda
commit afc6135f09

View File

@ -69,7 +69,7 @@ const AccountSummary = (props: Props) => {
} = props.selectedAccount;
// flow
if (!device || !account || !network) return null;
if (!device || !account || !network) return <SelectedAccount {...props} />;
const explorerLink: string = `${network.explorer.address}${account.address}`;
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, network.symbol);