We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa06de1 commit b43c648Copy full SHA for b43c648
src/lib/core/components/Form/hooks/useMutators.ts
@@ -27,7 +27,7 @@ export const useMutators = (externalMutators?: DynamicFormMutators) => {
27
const result = cloneDeep(a);
28
29
const getKeys = (parent: any): string[][] => {
30
- if (isObjectLike(parent)) {
+ if (isObjectLike(parent) && !Array.isArray(parent)) {
31
return keys(parent).reduce((acc: string[][], parentKey) => {
32
const childKeys = getKeys(parent[parentKey]);
33
0 commit comments