Skip to content

Instantly share code, notes, and snippets.

@enappd
Last active June 13, 2019 08:20
Ionic 4 Firebase email auth - Update email
updateEmail() {
user.updateEmail(this.email)
.then(() => {
this.email = '';
this.presentToast('Email updated', false, 'bottom', 1000);
this.error = '';
})
.catch(err => {
console.log(` failed ${err}`);
this.error = err.message;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment