From 310eb2455bd2883e648a40b46eeba2eaf2be55e8 Mon Sep 17 00:00:00 2001 From: JungLee-Dev <122341199+JungLee-Dev@users.noreply.github.com> Date: Mon, 23 Dec 2024 03:20:31 -0700 Subject: [PATCH] fix(client): replace == with === in donation-saga.js (#57709) --- client/src/redux/donation-saga.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/redux/donation-saga.js b/client/src/redux/donation-saga.js index 9e058f08776..7ba83fc4595 100644 --- a/client/src/redux/donation-saga.js +++ b/client/src/redux/donation-saga.js @@ -52,7 +52,7 @@ function* showDonateModalSaga() { if ( shouldRequestDonation && recentlyClaimedBlock && - recentlyClaimedBlock.superBlock == 'full-stack-developer' + recentlyClaimedBlock.superBlock === 'full-stack-developer' ) { yield put(preventBlockDonationRequests()); } else if (shouldRequestDonation || isModalRecentlyShown) {