update stripe trial

This commit is contained in:
dev.daminik00 2024-05-05 00:55:20 +02:00
parent 72426a65de
commit 1f51ec4ec2
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ function TrialChoicePage() {
const email = useSelector(selectors.selectEmail);
const [subPlans, setSubPlans] = useState<ISubscriptionPlan[]>([]);
const [isDisabled, setIsDisabled] = useState(true);
const allowedPlans = useMemo(() => [], []);
const allowedPlans = useMemo(() => [""], []);
useEffect(() => {
(async () => {

View File

@ -23,7 +23,7 @@ export default function StepSubscriptionPlan() {
const api = useApi();
const { i18n } = useTranslation();
const activeSubPlanFromStore = useSelector(selectors.selectActiveSubPlan);
const allowedPlans = useMemo(() => [], []);
const allowedPlans = useMemo(() => [""], []);
const storedEmail = steps.getStoredValue(Step.Email);