diff --git a/packages/backend/src/emails/templates/VerificationCode.tsx b/packages/backend/src/emails/templates/VerificationCode.tsx index 47959ad..0a1e2eb 100644 --- a/packages/backend/src/emails/templates/VerificationCode.tsx +++ b/packages/backend/src/emails/templates/VerificationCode.tsx @@ -1,3 +1,3 @@ export function VerificationCode({ code }: { code: string }) { - return {code}; + return Your sprint verification code is: {code}; }