diff --git a/app/hub/Views/HomeView/HomeViewContainer.jsx b/app/hub/Views/HomeView/HomeViewContainer.jsx index b1d43fced..280f1c636 100644 --- a/app/hub/Views/HomeView/HomeViewContainer.jsx +++ b/app/hub/Views/HomeView/HomeViewContainer.jsx @@ -119,7 +119,7 @@ class HomeViewContainer extends Component { } = home; // Flag to display promo modal (used in A/B testing) - const { pm } = QueryString.parse(window.location.search); + const pm = QueryString.parse(window.location.search).pm || false; // Logic to display premium modal if it is the case that it is being shown once per hub refresh to non-premium users const showPromoModal = pm && pm === 'true' && !premium_promo_modal_shown && !isPremium;