fix: disable donation modal for now
This commit is contained in:
committed by
mrugesh
parent
e5e5353ff1
commit
ebe9c468e3
@ -44,6 +44,13 @@ function* updateSuccessMessageSaga() {
|
|||||||
function* showDonateModalSaga() {
|
function* showDonateModalSaga() {
|
||||||
let { isDonating } = yield select(userSelector);
|
let { isDonating } = yield select(userSelector);
|
||||||
let shouldShowDonate = yield select(showDonationSelector);
|
let shouldShowDonate = yield select(showDonationSelector);
|
||||||
|
/**
|
||||||
|
* We are disabling donation modals for now.
|
||||||
|
*/
|
||||||
|
shouldShowDonate = false;
|
||||||
|
/**
|
||||||
|
* We are disabling donation modals for now.
|
||||||
|
*/
|
||||||
if (!isDonating && shouldShowDonate) {
|
if (!isDonating && shouldShowDonate) {
|
||||||
yield put(openDonationModal());
|
yield put(openDonationModal());
|
||||||
yield put(donationRequested());
|
yield put(donationRequested());
|
||||||
|
Reference in New Issue
Block a user