Skip to content

Commit

Permalink
Update user.response.dto.ts
Browse files Browse the repository at this point in the history
Wrong field mapping
  • Loading branch information
albestia authored Feb 25, 2021
1 parent 9c17e6e commit 60d84f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/user/dtos/user.response.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class UserResponse extends ResponseBase implements User {
this.email = user.email.value;
this.country = user.address.country;
this.postalCode = user.address.postalCode;
this.street = user.address.postalCode;
this.street = user.address.street;
}

@ApiProperty({
Expand Down

0 comments on commit 60d84f6

Please sign in to comment.