diff --git a/client/src/components/Intro/learn-alert.tsx b/client/src/components/Intro/learn-alert.tsx index 8724145ed5c..b8d85b753a9 100644 --- a/client/src/components/Intro/learn-alert.tsx +++ b/client/src/components/Intro/learn-alert.tsx @@ -94,7 +94,7 @@ const LearnAlert = ({ ); if (!isDonating) { - if (createUniversityFlag) return universityAlert; + if (createUniversityFlag.on) return universityAlert; if (progressAlertFlag2024.on) return progressAlert2024; if (seasonalAlertFlag.on) return seasonalAlertFlagAlert; } diff --git a/client/src/redux/selectors.js b/client/src/redux/selectors.js index 06b5c6757c8..406a738571b 100644 --- a/client/src/redux/selectors.js +++ b/client/src/redux/selectors.js @@ -52,13 +52,12 @@ export const shouldRequestDonationSelector = state => { /* When AB testing for showing multiple progress modals is active, - show a donation modal every 30 challenges after the first 50 + show a donation modal every 20 challenge */ if ( showMultipleProgressModals && progressDonationModalShown && - completedChallengesLength > 50 && - completionCount - lastCompletionCount >= 30 + completionCount - lastCompletionCount >= 20 ) return true;