feat: update donation page copy (#40639)

This commit is contained in:
Ahmad Abdolsaheb
2021-01-08 15:54:39 +03:00
committed by GitHub
parent bd7bf6971f
commit 7d41dd0e80
3 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ export const DonationOptionsText = () => (
'https://www.freecodecamp.org/news/how-to-donate-to-free-code-camp' 'https://www.freecodecamp.org/news/how-to-donate-to-free-code-camp'
} }
> >
other ways we could support our non-profit's mission other ways you can support our non-profit's mission
</a> </a>
. .
</p> </p>
@ -57,7 +57,7 @@ export const DonationOptionsAlertText = () => (
<a <a
href={'https://www.freecodecamp.org/news/how-to-donate-to-free-code-camp'} href={'https://www.freecodecamp.org/news/how-to-donate-to-free-code-camp'}
> >
other ways we could support our non-profit's mission other ways you can support our non-profit's mission
</a> </a>
. .
</p> </p>

View File

@ -39,7 +39,7 @@ describe('Donate page', () => {
); );
cy.contains( cy.contains(
selectors.donateSupport.firstText, selectors.donateSupport.firstText,
"Here are many other ways we could support our non-profit's mission." "Here are many other ways you can support our non-profit's mission."
); );
cy.contains( cy.contains(
selectors.donateSupport.secondText, selectors.donateSupport.secondText,

View File

@ -31,7 +31,7 @@ describe('Donate page', () => {
); );
cy.contains( cy.contains(
selectors.donateAlert.lastText, selectors.donateAlert.lastText,
"Want to make a bigger one-time donation, mail us a check, or give in other ways? Here are many other ways we could support our non-profit's mission." "Want to make a bigger one-time donation, mail us a check, or give in other ways? Here are many other ways you can support our non-profit's mission."
); );
}); });