Измените электронную почту Firebase на входе в систему

firebase.auth()
    .signInWithEmailAndPassword('you@domain.com', 'correcthorsebatterystaple')
    .then(function(userCredential) {
        userCredential.user.updateEmail('newyou@domain.com')
    })
Xenophobic Xenomorph