Fix escaped backtick syntax error in EmailBuilder.mjs
Build and Deploy Verso / deploy (push) Successful in 12m49s
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:
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user