Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
djhi committed Feb 2, 2021
1 parent 3a702f1 commit 758b11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ra-core/src/form/useFormGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const useFormGroup = (name: string): FormGroupState => {
.map(field => {
return form.getFieldState(field);
})
.filter(fieldState => fieldState != undefined);
.filter(fieldState => fieldState != undefined); // eslint-disable-line
const newState = getFormGroupState(fieldStates);

setState(oldState => {
Expand Down

0 comments on commit 758b11f

Please sign in to comment.