Fix escaped backtick syntax error in EmailBuilder.mjs
Build and Deploy Verso / deploy (push) Successful in 12m49s

sed substitution literal-escaped the backtick and \${ in the
groupSSOReauthenticate subject line, producing invalid JS.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
claude
2026-06-18 13:13:05 +00:00
parent 33fa5986c8
commit 8a821bc91d
@@ -517,7 +517,7 @@ templates.groupSSOLinkingInvite = ctaTemplate({
templates.groupSSOReauthenticate = ctaTemplate({ templates.groupSSOReauthenticate = ctaTemplate({
subject(opts) { subject(opts) {
return \`Action required: Reauthenticate your \${settings.appName} account\` return `Action required: Reauthenticate your ${settings.appName} account`
}, },
title(opts) { title(opts) {
return 'Action required: Reauthenticate SSO' return 'Action required: Reauthenticate SSO'