From 72426a65de2096a81fdb81c0fe49416d45c84375 Mon Sep 17 00:00:00 2001 From: "dev.daminik00" Date: Sun, 5 May 2024 00:49:08 +0200 Subject: [PATCH] update stripe trial --- src/components/pages/TrialChoice/index.tsx | 2 +- .../palmistry/step-subscription-plan/step-subscription-plan.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);