Reactjs – With Formik and Yup, how do I display a form error for a field of a nested object?
I'm using React 18, Ionic 7, Formik 2.4 and Yup 0.32. I have an object with a nested object export type Person = { name: string address: Address } The address objecdt is defined as export type Address = {…