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 f7667d8 commit 438c46fCopy full SHA for 438c46f
packages/core/src/components/Form.tsx
@@ -360,6 +360,8 @@ export default class Form<
360
isSchemaChanged || isFormDataChanged ? undefined : this.state.retrievedSchema,
361
isSchemaChanged,
362
formDataChangedFields,
363
+ // Skip live validation for this request if no form data has changed
364
+ !isFormDataChanged,
365
);
366
const shouldUpdate = !deepEquals(nextState, prevState);
367
return { nextState, shouldUpdate };
0 commit comments