diff --git a/apps/builder/src/features/auth/helpers/sendVerificationRequest.ts b/apps/builder/src/features/auth/helpers/sendVerificationRequest.ts index ef3694434..1cf579b0e 100644 --- a/apps/builder/src/features/auth/helpers/sendVerificationRequest.ts +++ b/apps/builder/src/features/auth/helpers/sendVerificationRequest.ts @@ -9,6 +9,7 @@ export const sendVerificationRequest = async ({ identifier, url }: Props) => { try { await sendMagicLinkEmail({ url, to: identifier }) } catch (err) { - throw new Error(`Email(s) could not be sent`) + console.error(err) + throw new Error(`Magic link email could not be sent. See error above.`) } }