fix: update donor email address and fix spacing

This commit is contained in:
Kris Koishigawa
2020-07-20 16:20:11 +09:00
committed by Kristofer Koishigawa
parent de55527693
commit f21248edae
3 changed files with 5 additions and 4 deletions

View File

@ -249,11 +249,11 @@ class DonateForm extends Component {
return ( return (
<div> <div>
{isOneTime ? ( {isOneTime ? (
<b>Confirm your one-time donation of ${donationAmount / 100} :</b> <b>Confirm your one-time donation of ${donationAmount / 100}:</b>
) : ( ) : (
<b> <b>
Confirm your donation of ${donationAmount / 100} /{' '} Confirm your donation of ${donationAmount / 100} /{' '}
{donationDuration} : {donationDuration}:
</b> </b>
)} )}
<Spacer /> <Spacer />

View File

@ -177,7 +177,8 @@ class DonateFormChildViewForHOC extends Component {
? error.response.data ? error.response.data
: { : {
error: error:
'Something is not right. Please contact team@freecodecamp.org' 'Something is not right. ' +
'Please contact donors@freecodecamp.org.'
}; };
this.setState(state => ({ this.setState(state => ({
...state, ...state,

View File

@ -28,7 +28,7 @@ const DonateText = () => {
<b>Need help with your current or past donations?</b> <b>Need help with your current or past donations?</b>
</h4> </h4>
<p> <p>
Forward a copy of your donation receipt to team@freeCodeCamp.org and Forward a copy of your donation receipt to donors@freecodecamp.org and
tell us how we can help. tell us how we can help.
</p> </p>
</Col> </Col>