fix: apply dart fix --apply
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user