Skip to content

Commit 4f4019c

Browse files
committed
fix(renderer): useFieldApi do not return isEqual
1 parent 38ec9cc commit 4f4019c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-form-renderer/src/files/use-field-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ const useFieldApi = ({ name, initializeOnMount, component, render, validate, ...
158158
});
159159
}
160160

161-
const { initialValue: _initialValue, clearOnUnmount, dataType, clearedValue, ...cleanProps } = props;
161+
const { initialValue: _initialValue, clearOnUnmount, dataType, clearedValue, isEqual: _isEqual, ...cleanProps } = props;
162162

163163
/**
164164
* construct component props necessary that would live in field provider

0 commit comments

Comments
 (0)