You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for providing this plugin, it's been really helpful. I wanted to add the brower's html autoComplete = 'mobile tel' property to help users fill their phone numbers faster:
<Phoneplaceholder="Your Phone Number"value={this.state.number}onChange={number=>{this.setState({ number })}}autoComplete='mobile tel'/>
While this does show the browser autocomplete dropdown on mobile and desktop:
When the user actually selects one of the options, the input does not change and there are no errors in the console.
Do you know why this might be and how we can go about solving this?