Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): loading screen flicker on wallet start
Browse files Browse the repository at this point in the history
Do not show the loading screen when starting up lnd. It usually takes
less than a second to start lnd, and showing the loading screen for a
split second is distracting and looks like a display glitch.
  • Loading branch information
mrfelton committed Jan 13, 2019
1 parent 06b1db7 commit 3c74c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/containers/Root.js
Expand Up @@ -127,7 +127,7 @@ const mapStateToProps = state => ({
hasWallets: walletSelectors.hasWallets(state),
errors: errorSelectors.getErrorState(state),
theme: themeSelectors.currentThemeSettings(state),
isLoading: appSelectors.isLoading(state) || state.lnd.startingLnd,
isLoading: appSelectors.isLoading(state),
isMounted: appSelectors.isMounted(state)
})

Expand Down

0 comments on commit 3c74c03

Please sign in to comment.