Skip to content

Commit 5b4a7a7

Browse files
committed
Fix formatting issue causing CI fail
1 parent 55eee98 commit 5b4a7a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/form_builder_validators.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ class FormBuilderValidators {
5757
String errorText,
5858
}) =>
5959
(valueCandidate) => valueCandidate == value
60-
? errorText ?? FormBuilderLocalizations.of(context).notEqualErrorText(value)
60+
? errorText ??
61+
FormBuilderLocalizations.of(context).notEqualErrorText(value)
6162
: null;
6263

6364
/// [FormFieldValidator] that requires the field's value to be greater than

0 commit comments

Comments
 (0)