Autofill email issue

I am working on a project for web only at this time and having an issue with login / password reset if the email field autofilled by chrome.

Using with firebase I couldn’t understand why it sometimes was rejecting my email addresses as malformed.

Current work around giving the input an id and getting the value directly

let emailEl = document.getElementById(‘ngEma’);
console.log(emailEl.value)
this.ema = emailEl.value;