Skip to content

Commit ee06681

Browse files
committed
Fixed password prompt not showing up
1 parent f718fa2 commit ee06681

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/containers/Auth/Login/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Login from 'components/Auth/Login';
1111

1212
const mapStateToProps = (state: IRootState) => ({
1313
wallet: state.auth.wallet,
14-
isAuthenticating: !state.engine.guestSession && state.auth.wallet && !state.auth.isAuthenticated
14+
isAuthenticating: !!state.engine.guestSession && state.auth.wallet && !state.auth.isAuthenticated
1515
});
1616

1717
const mapDispatchToProps = {

0 commit comments

Comments
 (0)