Skip to content

Commit

Permalink
form brakchet changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitrali-r committed Aug 1, 2023
1 parent b747bfb commit ce883cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion donor-registry/src/app/forms/forms.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class FormsComponent implements OnInit {
...('personalDetails' in this.model ? this.model['personalDetails'] : {}),
"firstName": this.tempData?.firstName,
"middleName": this.tempData?.middleName,
"lastName": (this.tempData?.lastName),
"lastName": this.tempData?.lastName,
"gender": (this.tempData?.gender) ? `${GenderMap[this.tempData?.gender]}` : {},
"emailId": (this.tempData?.email) ? this.tempData?.email : "",
"mobileNumber": this.tempData?.mobile,
Expand Down

0 comments on commit ce883cb

Please sign in to comment.