diff --git a/src/components/pages/TrialChoice/index.tsx b/src/components/pages/TrialChoice/index.tsx index 5e0b87c..04b6168 100755 --- a/src/components/pages/TrialChoice/index.tsx +++ b/src/components/pages/TrialChoice/index.tsx @@ -26,7 +26,7 @@ function TrialChoicePage() { const email = useSelector(selectors.selectEmail); const [subPlans, setSubPlans] = useState([]); const [isDisabled, setIsDisabled] = useState(true); - const allowedPlans = useMemo(() => ["stripe.37"], []); + const allowedPlans = useMemo(() => [], []); useEffect(() => { (async () => { diff --git a/src/components/palmistry/step-subscription-plan/step-subscription-plan.tsx b/src/components/palmistry/step-subscription-plan/step-subscription-plan.tsx index d1f4de5..5c67b80 100644 --- a/src/components/palmistry/step-subscription-plan/step-subscription-plan.tsx +++ b/src/components/palmistry/step-subscription-plan/step-subscription-plan.tsx @@ -23,7 +23,7 @@ export default function StepSubscriptionPlan() { const api = useApi(); const { i18n } = useTranslation(); const activeSubPlanFromStore = useSelector(selectors.selectActiveSubPlan); - const allowedPlans = useMemo(() => ["stripe.37"], []); + const allowedPlans = useMemo(() => [], []); const storedEmail = steps.getStoredValue(Step.Email);