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 b43c648 commit d6d6fb5Copy full SHA for d6d6fb5
src/lib/core/components/Form/hooks/useMutators.ts
@@ -53,7 +53,7 @@ export const useMutators = (externalMutators?: DynamicFormMutators) => {
53
a: Record<string, {value: T}> = {},
54
b: Record<string, T>,
55
) => {
56
- const result = cloneDeep(a);
+ const result = {...a};
57
58
Object.keys(b).forEach((key) => {
59
set(result, [key, 'value'], b[key]);
0 commit comments