diff --git a/src/components/Paywall.tsx b/src/components/Paywall.tsx index 9d9d744..f9dfd08 100644 --- a/src/components/Paywall.tsx +++ b/src/components/Paywall.tsx @@ -14,7 +14,7 @@ export default function Paywall() { api.stripe.createCheckoutSession.useMutation(); const router = useRouter(); const [open, setOpen] = useAtom(paywallAtom); - const [billedAnnually, setBilledAnnually] = useState(false); + const [billedAnnually, setBilledAnnually] = useState(true); const posthog = usePostHog(); function closeModal() { diff --git a/src/pages/pricing.tsx b/src/pages/pricing.tsx index 7d9b867..8a72a0c 100644 --- a/src/pages/pricing.tsx +++ b/src/pages/pricing.tsx @@ -10,7 +10,7 @@ import CTA from "~/components/CTA"; import VideoRecordModal from "~/components/VideoRecordModal"; export default function Pricing() { - const [billedAnnually, setBilledAnnually] = useState(false); + const [billedAnnually, setBilledAnnually] = useState(true); return ( <>