fix: apply dart fix --apply

This commit is contained in:
2023-08-28 09:00:59 +00:00
committed by hugo
parent e74346b655
commit cc41b7b589
36 changed files with 127 additions and 127 deletions
@@ -33,7 +33,7 @@ abstract class Forms {
FormInput(
AuthFormField.password,
customPasswordValidator ?? const Password.pure(),
)
),
],
name: AuthFormName.signInForm,
);
@@ -55,7 +55,7 @@ abstract class Forms {
AuthFormField.password,
customPasswordValidator ?? const Password.pure(),
),
...extraSignUpInputs ?? []
...extraSignUpInputs ?? [],
],
name: AuthFormName.signUpForm,
);
@@ -93,7 +93,7 @@ abstract class Forms {
customPasswordValidator ?? const Password.pure(),
metadata: const FormInputMetadata(isRequired: false),
),
...extraEditAccountInputs ?? []
...extraEditAccountInputs ?? [],
],
validationStrategy: const OnlyRequiredInputValidator(),
name: AuthFormName.editAccountForm,