set billedAnually to true as default
This commit is contained in:
parent
d7d5152a04
commit
4bf5de6e5d
2 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ export default function Paywall() {
|
|||
api.stripe.createCheckoutSession.useMutation();
|
||||
const router = useRouter();
|
||||
const [open, setOpen] = useAtom(paywallAtom);
|
||||
const [billedAnnually, setBilledAnnually] = useState<boolean>(false);
|
||||
const [billedAnnually, setBilledAnnually] = useState<boolean>(true);
|
||||
const posthog = usePostHog();
|
||||
|
||||
function closeModal() {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ import CTA from "~/components/CTA";
|
|||
import VideoRecordModal from "~/components/VideoRecordModal";
|
||||
|
||||
export default function Pricing() {
|
||||
const [billedAnnually, setBilledAnnually] = useState<boolean>(false);
|
||||
const [billedAnnually, setBilledAnnually] = useState<boolean>(true);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
|
|
|||
Loading…
Reference in a new issue