Skip to content

Commit

Permalink
Address registration issue by adding lastname in the search string (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sainingo authored Aug 22, 2024
1 parent 550f652 commit d60b7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/patient-creation/patient-creation.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ export class PatientCreationComponent implements OnInit, OnDestroy {
birthdateEstimated: this.birthdateEstimated
};
this.sessionStorageService.setObject('person', this.person);
const searchString = this.givenName;
const searchString = this.givenName + ' ' + this.familyName;
this.patientCreationService
.searchPatient(searchString, false)
.pipe(take(1))
Expand Down

0 comments on commit d60b7f7

Please sign in to comment.