Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/src/view/account/edit_profile_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down