final-form / react-final-form

🏁 High performance subscription-based form state management for React
https://final-form.org/react
MIT License
7.39k stars 481 forks source link

[Question] Is it safe to use noValidate flag on form and to prevent default native validation messages #1041

Open amBunkowski opened 4 months ago

amBunkowski commented 4 months ago

I'm wondering if is it save to enable 'noValidate' flag in react final form. <form noValidate onSubmit={handleSubmit} What I'm trying to achieve is omit native input validation e.g. for inputs type=date

image