Skip to content

Commit

Permalink
fix(email): Remove 'the' from some transactional emails (#2796)
Browse files Browse the repository at this point in the history
Two transactional emails -- purchase successful and purchase failure -- referred to "the Rollup ID". This removes the article "the" so that branding is more consistent.
  • Loading branch information
alfl authored Dec 22, 2023
1 parent e2ccdfe commit c18cf1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/email/emailTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ export const EmailTemplateFailedPayment = (
const content = `<div class="heading">Payment Issue Detected</div>
<p>
Your payment for the Rollup ID has failed.
Your payment for Rollup ID has failed.
</p>
<p>
Expand Down Expand Up @@ -398,7 +398,7 @@ export const EmailTemplateSuccessfulPayment = ({
}): EmailContent => {
const content = `<div class="heading">Payment Successful</div>
<p>
Your payment for the <b>Rollup ID</b> has been processed successfully.
Your payment for <b>Rollup ID</b> has been processed successfully.
</p>
<p>
Expand Down

0 comments on commit c18cf1b

Please sign in to comment.