Bartłomiej Jodłowski

Results 7 comments of Bartłomiej Jodłowski

I'm having issues from this morning too with the same things. However, the examples you provided work for me. https://codesandbox.io/s/react-final-form-field-arrays-mrl4s // works https://codesandbox.io/s/kx8qv67nk5 // works Also, I had issues with...

Could you explain how https://codesandbox.io/s/kx8qv67nk5 is broken? (or rather, how to reproduce the bug you are describing)

Also, isn't this related? https://github.com/final-form/react-final-form-arrays/issues/114

I see now. I reverted to: ``` "final-form": "^4.12.0", "final-form-arrays": "1.1.2", "react-final-form": "^4.1.0", "react-final-form-arrays": "^2.0.3" ``` Also, I used your solution with microtasks. It seems rather stable after some extended...

I noticed that even though I was using explicit versioning, the resolved dependencies in my package-lock also contained the same versions of final-form-arrays and react-final-form-arrays as you had in sandbox....

After almost half a year, I have found a solution to this problem that allows for testing the initialValues that includes using useMemo for the initialValues and passing manually values...

Hey, here are some crucial parts of my solution: ``` let [keys, setKeys] = useState({ data: [] }); let [counter, setCounter] = useState({ count: 0 }); const defaultRanges = useMemo(...