Skip to content

Commit

Permalink
🐛 PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque committed Jan 31, 2025
1 parent 5fc2f27 commit 5a75b0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/domain/common/src/valueTypes/email.valueType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const bind = ({ email }: PlainType<ValueType>): ValueType => {

export const convertirEnValueType = (value: string): ValueType => {
return bind({
email: value?.toLowerCase(),
email: value.toLowerCase(),
});
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const bind = ({ email }: PlainType<ValueType>): ValueType => {
*/
export const convertirEnValueType = (value: string): ValueType => {
return bind({
email: value?.toLowerCase(),
email: value.toLowerCase(),
});
};

Expand Down

0 comments on commit 5a75b0c

Please sign in to comment.