File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/authentication/verify-email Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import mjml2html from 'mjml';
44import { Config } from '../../configuration' ;
55import { Dependencies } from '../../dependencies' ;
66import { Email , EmailAddress , Failure } from '../../types' ;
7- import { emailVerificationLink } from './email-verification-link' ;
7+ import { createEmailVerificationLink } from './email-verification-link' ;
88
99const toEmail =
1010 ( emailAddress : EmailAddress ) =>
@@ -52,7 +52,7 @@ export const sendEmailVerification = (
5252 conf : Config
5353) => ( memberNumber : number , emailAddress : EmailAddress ) : TE . TaskEither < Failure , string > => {
5454 const email = toEmail ( emailAddress ) (
55- emailVerificationLink . create ( conf ) ( {
55+ createEmailVerificationLink ( conf ) ( {
5656 memberNumber,
5757 emailAddress,
5858 } )
You can’t perform that action at this time.
0 commit comments