diff --git a/resources/js/pages/subscription/paywall.tsx b/resources/js/pages/subscription/paywall.tsx index 35ce50e6..92effc54 100644 --- a/resources/js/pages/subscription/paywall.tsx +++ b/resources/js/pages/subscription/paywall.tsx @@ -383,23 +383,28 @@ function PricingSection({ return () => clearTimeout(timer); }, [canUseFreePlan]); + const continueForFree = () => router.visit(dashboard().url); + const freeRevealClasses = freeButtonVisible + ? 'opacity-100' + : 'pointer-events-none opacity-0'; + return (
{canUseFreePlan && ( - + +
)} {selectedPlanData && ( @@ -458,15 +463,13 @@ function PricingSection({