diff --git a/apps/web/src/components/pay-wall-dialog.tsx b/apps/web/src/components/pay-wall-dialog.tsx index f963a6a56..1074847f6 100644 --- a/apps/web/src/components/pay-wall-dialog.tsx +++ b/apps/web/src/components/pay-wall-dialog.tsx @@ -27,7 +27,7 @@ const monthlyPriceAnnualRate = (pricingData.yearly.amount / 100 / 12).toFixed( export function PayWallDialog({ children, ...forwardedProps }: DialogProps) { const dialog = useDialog(); - const [period, setPeriod] = React.useState("yearly"); + const [period, setPeriod] = React.useState("monthly"); return ( @@ -90,6 +90,19 @@ export function PayWallDialog({ children, ...forwardedProps }: DialogProps) {
+
  • +
    + + +
    +

    + ${monthlyPrice} + / mo +

    +
  • @@ -106,7 +119,7 @@ export function PayWallDialog({ children, ...forwardedProps }: DialogProps) { />
    -

    +

    ${yearlyPrice} ${((pricingData.monthly.amount * 12) / 100).toFixed(2)} @@ -120,19 +133,6 @@ export function PayWallDialog({ children, ...forwardedProps }: DialogProps) { / mo

  • -
  • -
    - - -
    -

    - ${monthlyPrice} - / mo -

    -