Skip to content

Commit

Permalink
corporateUser: Add space between first and last name for legalpersonname
Browse files Browse the repository at this point in the history
  • Loading branch information
sashko9807 committed Oct 20, 2023
1 parent 76c8129 commit 1dc7243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class AuthService {
personId: personId,
companyNumber: registerDto.companyNumber,
companyName: registerDto.companyName,
legalPersonName: registerDto.firstName + registerDto.lastName,
legalPersonName: registerDto.firstName + ' ' + registerDto.lastName,
},
// Store keycloakId to the person with same email
update: { personId },
Expand Down

0 comments on commit 1dc7243

Please sign in to comment.