📏 shouldUseNativeValidation
will inject native validation attributes into field which supports both client & server (#7207)
const { register } = useForm()
<input {...register('name', { required: true })} />
<input name="name" required /> // both client and server render
🤦🏻♂️ fix #2717 regression with async field array actions (#7218)