diff --git a/lib/src/view/account/edit_profile_screen.dart b/lib/src/view/account/edit_profile_screen.dart index 2cc4b534be..d30e61802c 100644 --- a/lib/src/view/account/edit_profile_screen.dart +++ b/lib/src/view/account/edit_profile_screen.dart @@ -208,8 +208,8 @@ class _EditProfileFormState extends ConsumerState<_EditProfileForm> { text: widget.user.profile?.fideRating?.toString(), ), validator: (value) { - if (value != null && (value < 1000 || value > 3000)) { - return 'Rating must be between 1000 and 3000'; + if (value != null && (value < 1400 || value > 3000)) { + return 'Rating must be between 1400 and 3000'; } return null; },