Login actions › signIn should call firebase
TypeError: auth.signInWithEmailAndPassword is not a function
This tells that your store.dispatch(signIn(user.email, user.password))
fails, thus your second console.log won't go into your then
chain, use catch
or second callback argument of then
instead.