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 579c3da commit 29afedfCopy full SHA for 29afedf
primitives/filed-form /src/Field.tsx
@@ -120,8 +120,8 @@ function Field<Values = any>(props: InternalFieldProps<Values>) {
120
121
useEffect(() => {
122
const unregister = registerField({
123
- changeValue: (newValue, isShouldUpdate) => {
124
- if (!isShouldUpdate || !normalizedChangedRef.current) return;
+ changeValue: newValue => {
+ if (!normalizedChangedRef.current) return;
125
126
normalizedChangedRef.current = false;
127
0 commit comments