We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f718fa2 commit ee06681Copy full SHA for ee06681
1 file changed
src/app/containers/Auth/Login/index.tsx
@@ -11,7 +11,7 @@ import Login from 'components/Auth/Login';
11
12
const mapStateToProps = (state: IRootState) => ({
13
wallet: state.auth.wallet,
14
- isAuthenticating: !state.engine.guestSession && state.auth.wallet && !state.auth.isAuthenticated
+ isAuthenticating: !!state.engine.guestSession && state.auth.wallet && !state.auth.isAuthenticated
15
});
16
17
const mapDispatchToProps = {
0 commit comments