Skip to content

Commit

Permalink
Remove duplicate pool name
Browse files Browse the repository at this point in the history
  • Loading branch information
sophialittlejohn committed Sep 1, 2023
1 parent a852c19 commit c38faa7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion onboarding-api/src/emails/sendApproveInvestorMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const sendApproveInvestorMessage = async (
},
],
dynamic_template_data: {
poolName: poolMetadata?.pool.name,
trancheName: tranche?.currency.name,
poolUrl: `${process.env.REDIRECT_URL}/pools/${poolId}`,
},
Expand Down
1 change: 0 additions & 1 deletion onboarding-api/src/emails/sendApproveIssuerMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export const sendApproveIssuerMessage = async (
],
dynamic_template_data: {
trancheName: tranche.currency.name,
poolName: metadata?.pool.name,
investorEmail: user.email,
},
},
Expand Down
1 change: 0 additions & 1 deletion onboarding-api/src/emails/sendDocumentsMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export const sendDocumentsMessage = async (
token
)}&status=approved&metadata=${pool?.metadata}&network=${wallet.network}`,
disclaimerLink: `${process.env.REDIRECT_URL}/disclaimer`,
poolName: metadata?.pool.name,
trancheName: tranche?.currency.name,
investorEmail,
},
Expand Down
1 change: 0 additions & 1 deletion onboarding-api/src/emails/sendRejectInvestorMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export const sendRejectInvestorMessage = async (
},
],
dynamic_template_data: {
poolName: metadata?.pool.name,
issuerEmail: metadata.pool.issuer.email,
trancheName: tranche?.currency.name,
},
Expand Down

0 comments on commit c38faa7

Please sign in to comment.