diff --git a/client/src/components/Donation/MinimalDonateForm.js b/client/src/components/Donation/MinimalDonateForm.js index 52bafec0e6..5a58e78808 100644 --- a/client/src/components/Donation/MinimalDonateForm.js +++ b/client/src/components/Donation/MinimalDonateForm.js @@ -118,6 +118,8 @@ class MinimalDonateForm extends Component { const { donationState: { processing, success, error } } = this.state; + + const donationPlan = `$${donationAmount / 100} / ${donationDuration}`; if (processing || success || error) { return this.renderCompletion({ processing, @@ -131,7 +133,7 @@ class MinimalDonateForm extends Component { - Confirm your donation of $5 / year with PayPal: + Confirm your donation of {donationPlan} with PayPal: - `Confirm your donation of $5 / year` + `Confirm your donation of ${donationPlan}` } handleProcessing={handleProcessing} />