Skip to content

Commit

Permalink
fix: added missing complementary address info
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Aug 12, 2024
1 parent 6c4c7c6 commit 918cf07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/src/main/java/ca/bc/gov/app/util/ClientMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ public static SubmissionLocationEntity mapToSubmissionLocationEntity(
.withSecondaryPhoneNumber(clientAddressDto.secondaryPhoneNumber())
.withFaxNumber(clientAddressDto.faxNumber())
.withEmailAddress(clientAddressDto.emailAddress())
.withComplementaryAddress1(clientAddressDto.complementaryAddressOne())
.withComplementaryAddress2(clientAddressDto.complementaryAddressTwo())
.withNotes(clientAddressDto.notes());
}

Expand Down

0 comments on commit 918cf07

Please sign in to comment.