Rails 8 authentication: autocomplete username for email_address field

Any idea why the sessions/new.html.erb users autocomplete: “username” for the email field? I’m trying to add a separate username field and it’s behaving strangely. Can I change it to autocomplete: “email_address” ?

Thanks!

<%%= form.email_field :email_address, required: true, autofocus: true, autocomplete: “username”, placeholder: “Enter your email address”, value: params[:email_address] %>

You can change it to “email”