Skip to content

Commit

Permalink
[RCF-991] (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
GSPrakashNaidu2662 authored Sep 25, 2024
1 parent 73ed2c6 commit 83abff8
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,11 @@ public void submitRegistrationDto(String makerName) throws Exception {
throw new ClientCheckedException(context, R.string.err_004);
}

if(this.registrationDto.getFlowType().equals("NEW")) {
List<String> selectedHandles = this.globalParamRepository.getSelectedHandles();
this.registrationDto.getDemographics().put("selectedHandles", selectedHandles);
List<String> selectedHandles = this.globalParamRepository.getSelectedHandles();
if(selectedHandles != null) {
if (this.registrationDto.getFlowType().equals("NEW")) {
this.registrationDto.getDemographics().put("selectedHandles", selectedHandles);
}
}

// try {
Expand Down

0 comments on commit 83abff8

Please sign in to comment.