Added missing case

pull/287/head
Vladimir Volek 6 years ago committed by Szymon Lesisz
parent 3d83a4675c
commit 34887a4e49

@ -108,7 +108,7 @@ const getAccountLoader = (state: State, selectedAccount: SelectedAccountState):
const getAccountNotification = (state: State, selectedAccount: SelectedAccountState): ?AccountStatus => {
const device = state.wallet.selectedDevice;
const { network } = selectedAccount;
const { network, discovery } = selectedAccount;
if (device && network) {
const blockchain = state.blockchain.find(b => b.shortcut === network.shortcut);
@ -120,6 +120,16 @@ const getAccountNotification = (state: State, selectedAccount: SelectedAccountSt
};
}
if (discovery) {
if (discovery && !discovery.completed) {
return {
type: 'info',
title: 'Loading accounts...',
shouldRender: true,
};
}
}
// Additional status: account does exists and it's visible but shouldn't be active
if (!device.connected) {
return {

Loading…
Cancel
Save