fix(client): replace == with === in donation-saga.js (#57709)

This commit is contained in:
JungLee-Dev
2024-12-23 03:20:31 -07:00
committed by GitHub
parent a9c490fda1
commit 310eb2455b

View File

@@ -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) {