diff --git a/client/src/templates/Challenges/redux/current-challenge-saga.js b/client/src/templates/Challenges/redux/current-challenge-saga.js index 307ae7f073..656c9a3c13 100644 --- a/client/src/templates/Challenges/redux/current-challenge-saga.js +++ b/client/src/templates/Challenges/redux/current-challenge-saga.js @@ -44,6 +44,13 @@ function* updateSuccessMessageSaga() { function* showDonateModalSaga() { let { isDonating } = yield select(userSelector); let shouldShowDonate = yield select(showDonationSelector); + /** + * We are disabling donation modals for now. + */ + shouldShowDonate = false; + /** + * We are disabling donation modals for now. + */ if (!isDonating && shouldShowDonate) { yield put(openDonationModal()); yield put(donationRequested());