diff --git a/client/src/pages/donate.js b/client/src/pages/donate.js
index f2464d302b..0a82331133 100644
--- a/client/src/pages/donate.js
+++ b/client/src/pages/donate.js
@@ -67,7 +67,7 @@ export class DonatePage extends Component {
render() {
const { stripe } = this.state;
- const { showLoading } = this.props;
+ const { showLoading, isDonating } = this.props;
if (showLoading) {
return ;
@@ -80,20 +80,32 @@ export class DonatePage extends Component {
- Become a Supporter
+
+ {isDonating
+ ? 'Thank You for Your Support'
+ : 'Become a Supporter'}
+
-
-
-
-
-
-
+ {isDonating ? (
+
+
+
+ ) : (
+
+
+
+
+
+
+
+
+ )}