fix: ref subscription url
This commit is contained in:
parent
8d89b5067b
commit
d9d8d54dba
@ -63,7 +63,7 @@ function SubscriptionPage(): JSX.Element {
|
|||||||
(sub_plan) =>
|
(sub_plan) =>
|
||||||
String(
|
String(
|
||||||
sub_plan?.trial?.price_cents
|
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(".", "")
|
: sub_plan.id.replace(".", "")
|
||||||
) === subPlan
|
) === subPlan
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user