diff --git a/src/components/SubscriptionPage/index.tsx b/src/components/SubscriptionPage/index.tsx index 6b0e602..6ee9803 100644 --- a/src/components/SubscriptionPage/index.tsx +++ b/src/components/SubscriptionPage/index.tsx @@ -63,7 +63,7 @@ function SubscriptionPage(): JSX.Element { (sub_plan) => String( sub_plan?.trial?.price_cents - ? Math.floor(sub_plan?.trial?.price_cents / 100) + ? Math.floor((sub_plan?.trial?.price_cents + 1) / 100) : sub_plan.id.replace(".", "") ) === subPlan );