Browse Source

employername optional

new_design
Santosh Bhandary 4 years ago
parent
commit
404f91edd7
  1. 4
      app/src/main/java/com/swifttech/remit/android/features/kyc/existingCustomer/presenter/ExistingKYCV3ViewModel.java

4
app/src/main/java/com/swifttech/remit/android/features/kyc/existingCustomer/presenter/ExistingKYCV3ViewModel.java

@ -668,8 +668,8 @@ public class ExistingKYCV3ViewModel extends BaseViewModel implements ExistingKYC
customerDetailLiveData.getEmployerNameLiveData().setValue(new FormInputStateDTO<>(true, null, null)); customerDetailLiveData.getEmployerNameLiveData().setValue(new FormInputStateDTO<>(true, null, null));
return true; return true;
} else { } else {
customerDetailLiveData.getEmployerNameLiveData().setValue(new FormInputStateDTO<>(false, "Invalid Employer Name", null));
return false;
customerDetailLiveData.getEmployerNameLiveData().setValue(new FormInputStateDTO<>(true, null, null));
return true;
} }
} }

Loading…
Cancel
Save