I click on button for login in google signin (open google login), if login is in error (error google), the back button for return app is not visible.
I Use IOS.
import { AngularFireAuth } from 'angularfire2/auth';
import * as firebase from "firebase";
constructor(private afAuth: AngularFireAuth) {
}
public onLoginGoogle() {
const provider = new firebase.auth.GoogleAuthProvider();
this.afAuth.auth.setPersistence(firebase.auth.Auth.Persistence.LOCAL)
.then((result) => {
return this.afAuth.auth.signInWithRedirect(provider);
})
.then((result) => {
return this.afAuth.auth.getRedirectResult();
})
....
}