Skip to content

Commit

Permalink
fixed email value
Browse files Browse the repository at this point in the history
  • Loading branch information
kkatusic committed Nov 28, 2024
1 parent 9e4f75c commit 07892ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repositories/projectVerificationRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const createProjectVerificationForm = async (params: {
project,
user,
// This has been added becasue we are now doing verification of the email on user profile
email: user?.email || '',
email: user?.email ?? '',
emailConfirmed: true,
emailConfirmedAt: new Date(),
} as ProjectVerificationForm).save();
Expand Down

0 comments on commit 07892ca

Please sign in to comment.