fix: general fixes on date types and some typos

This commit is contained in:
Abdalhamid Alhamad
2025-01-05 10:38:19 +03:00
parent aefa866ae7
commit eca84b4e75
4 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ export class CustomerResponseDto {
nationalId!: string;
@ApiProperty()
nationaIdExpiry!: Date;
nationalIdExpiry!: Date;
@ApiProperty()
countryOfResidence!: string;
@ -66,7 +66,7 @@ export class CustomerResponseDto {
this.lastName = customer.lastName;
this.dateOfBirth = customer.dateOfBirth;
this.nationalId = customer.nationalId;
this.nationaIdExpiry = customer.nationaIdExpiry;
this.nationalIdExpiry = customer.nationalIdExpiry;
this.countryOfResidence = customer.countryOfResidence;
this.sourceOfIncome = customer.sourceOfIncome;
this.profession = customer.profession;