From 782eac875d9c7cf9901f2ef42bdaa1537ddb725e Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Wed, 14 Aug 2024 20:19:46 +0530 Subject: [PATCH] chore: resolved function call in pricing (#837) --- web/ee/components/license/pro-plan-cloud-upgrade-modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ee/components/license/pro-plan-cloud-upgrade-modal.tsx b/web/ee/components/license/pro-plan-cloud-upgrade-modal.tsx index 9733e1cb5f..20344191ae 100644 --- a/web/ee/components/license/pro-plan-cloud-upgrade-modal.tsx +++ b/web/ee/components/license/pro-plan-cloud-upgrade-modal.tsx @@ -266,7 +266,7 @@ export const ProPlanCloudUpgradeModal: FC = (prop features={PRO_PLAN_FEATURES_MAP} isLoading={isLoading} handlePaymentLink={(priceId: string) => - isInTrailPeriod ? handleSubscriptionPageRedirection : handlePaymentLink(priceId) + isInTrailPeriod ? handleSubscriptionPageRedirection() : handlePaymentLink(priceId) } yearlyPlanOnly={yearlyPlan} trialLoader={trialLoader}