Vadim Khalikov
Results
2
comments of
Vadim Khalikov
I encountered the same issue. Looks like this happens even without nesting `withFieldGroup` components. https://codesandbox.io/p/devbox/suspicious-elgamal-79j4tr?workspaceId=ws_MqxYqe2Tbvb7TuAH8jpm52 Seems like the reason for this is that `useFieldGroup` doesn't react to changes to `opts.fields`....
In case someone needs a quick solution: Adding a key prop to a `withFieldsGroup` component when rendering mitigates the issue by forcing it to remount. Here's an updated sandbox with...