From c41b69c925d88dab8dffc228882cf3a56a7a185d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 03:40:50 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../server/src/verification/send-verification-email.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/server/src/verification/send-verification-email.tsx b/packages/server/src/verification/send-verification-email.tsx index fe9cd6ee6..e6ae0250a 100644 --- a/packages/server/src/verification/send-verification-email.tsx +++ b/packages/server/src/verification/send-verification-email.tsx @@ -80,7 +80,11 @@ export const sendInvitationEmail = async ({ inviteLink: string; organizationName: string; }) => { - const html = await renderInvitationEmail({ email, inviteLink, organizationName }); + const html = await renderInvitationEmail({ + email, + inviteLink, + organizationName, + }); await sendEmail({ email, subject: `You've been invited to join ${organizationName} on Dokploy`,