https://i.stack.imgur.com/834LB.png
Is there a way to remove the message "Please fill out this field" while still keeping the "required" attribute intact? I have my own validation system in place, so I need to use the "required" attribute to determine whether the text field is valid or not.
<input
name="name"
value="name"
onChange={this.handleChange}
id="name"
type="text"
autoComplete="off"
required
></input>