Hi @north mesa
I've noticed in the latest version of Mantine, some of my forms that had a setFieldValue in a useEffect dependency array are causing a maximum update depth exceeded error. I looked at the code when uncontrolled mode was introduced and there's a new rules dependency in the useCallback for setFieldValue
https://github.com/mantinedev/mantine/blame/master/packages/%40mantine/form/src/use-form.ts#L100
I have a zod resolver in the forms and if I move the entire definition of the validate function outside of the component, then it works fine. Was this rules dependency introduced on purpose?