When using a select that produces output similar to this
<select>
<option value="one">One</option>
<option value="two">Two</option>
</select>
If you have validation (in my case yup) that makes the select required, if the user does not interact with the select by changing it's option, it will fail validation even though One will be selected by default.
When using a select that produces output similar to this
If you have validation (in my case yup) that makes the select required, if the user does not interact with the select by changing it's option, it will fail validation even though One will be selected by default.