Просмотр исходного кода

Fix tax exempt email template (#28964)

GitOrigin-RevId: 8171c12f0255079c6b4e47238d7f436babb59bca
Liangjun Song 10 месяцев назад
Родитель
Сommit
293157149e
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      services/web/app/src/Features/Email/EmailBuilder.js

+ 2 - 2
services/web/app/src/Features/Email/EmailBuilder.js

@@ -992,13 +992,13 @@ templates.taxExemptCertificateRequired = NoCTAEmailTemplate({
       '<li>Your IRS determination letter (for non-profits and similar organizations)</li>',
       '<li>Your state resale or exemption certificate</li>',
       '</ul>',
-      `These should match the EIN you provided:${opts.ein}.`,
+      `These should match the EIN you provided: ${opts.ein}.`,
       'If you have any questions, let us know by replying to this email.',
       '<br/>',
       'Best wishes,',
       'Team Overleaf',
       '<br/>',
-      `Our reference:${opts.stripeCustomerId}`,
+      `Our reference: ${opts.stripeCustomerId}`,
     ]
   },
 })