diff --git a/lib/screens/patients/profile/soap_update/subjective/update_subjective_page.dart b/lib/screens/patients/profile/soap_update/subjective/update_subjective_page.dart index 1523e59b..53195a47 100644 --- a/lib/screens/patients/profile/soap_update/subjective/update_subjective_page.dart +++ b/lib/screens/patients/profile/soap_update/subjective/update_subjective_page.dart @@ -293,8 +293,7 @@ class _UpdateSubjectivePageState extends State model.medicationControllerError = ''; model.illnessControllerError = ''; if (complaintsController.text.isNotEmpty && - illnessController.text.isNotEmpty && - complaintsController.text.length > 25) { + illnessController.text.isNotEmpty) { await model.postSubjectServices( patientInfo: widget.patientInfo, complaintsText: complaintsController.text, @@ -312,9 +311,6 @@ class _UpdateSubjectivePageState extends State if (complaintsController.text.isEmpty) { model.complaintsControllerError = TranslationBase.of(context).emptyMessage; - } else if (complaintsController.text.length < 25) { - model.complaintsControllerError = - TranslationBase.of(context).chiefComplaintLength; } if (illnessController.text.isEmpty) {