Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ansonjwhe committed Apr 12, 2024
1 parent 89dadcf commit 9b767a4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions backend/emails/emails.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,17 @@ const getSFTicketInfoHTML = async (sf) => {
Ticket Code: ${sf.code} <br />
Sponsorship Fund: ${sf.name} <br />
Allocated Funding: CAD ${currencyFormatter.format(
sf.funding_allocation
)} <br/ >
sf.funding_allocation
)} <br/ >
Funding Spent: CAD ${currencyFormatter.format(
sf.funding_spent
)} <br />
sf.funding_spent
)} <br />
${sf.proposal_url ? `Proposal URL: ${sf.proposal_url} <br />` : ``}
${sf.presentation_url
? `Presentation URL: ${sf.presentation_url} <br />`
: ``
}
${
sf.presentation_url
? `Presentation URL: ${sf.presentation_url} <br />`
: ``
}
Status: ${sf.status} <br />
Reporter: ${reporter.displayName} &lt;${reporter.email}&gt; <br />
Created: ${new Date(sf.createdAt).toDateString()} <br />
Expand Down

0 comments on commit 9b767a4

Please sign in to comment.