diff --git a/client/src/redux/index.js b/client/src/redux/index.js index 3e78b4307f..cd4d8a0382 100644 --- a/client/src/redux/index.js +++ b/client/src/redux/index.js @@ -181,12 +181,6 @@ export const shouldRequestDonationSelector = state => { const isDonating = isDonatingSelector(state); const canRequestBlockDonation = canRequestBlockDonationSelector(state); - const debugModal = localStorage.getItem('DEBUG_DONATE_MODAL', false); - console.log(debugModal); - if (debugModal === 'yes-please') { - return true; - } - // don't request donation if already donating if (isDonating) return false;