with react final-form why is meta.touched always false with third party components? with react final-form why is meta.touched always false with third party components? reactjs reactjs

with react final-form why is meta.touched always false with third party components?


annnnd as usual i answer my own question.

i had to propagate the onBlur() event as well, which makes sense since touched docs say it's true only after user has entered and left focus on the input.

<FloatingLabelInput   ...   onBlur={(event) => input.onBlur(event)}/>