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 cec82b3 commit e37a002Copy full SHA for e37a002
src/useForm.ts
@@ -921,6 +921,9 @@ export class FormStore {
921
const { recursive, dirty } = options || {};
922
923
this.getFieldEntities(true).forEach((field: FieldEntity) => {
924
+ if (field.isList()) {
925
+ return;
926
+ }
927
// Add field if not provide `nameList`
928
if (!provideNameList) {
929
namePathList.push(field.getNamePath());
0 commit comments