mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Fix error
This commit is contained in:
@@ -274,8 +274,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
$: isUpgrade = $plansInfo.get(billingPlan).order > $currentPlan.order;
|
||||
$: isDowngrade = $plansInfo.get(billingPlan).order < $currentPlan.order;
|
||||
$: isUpgrade = $plansInfo.get(billingPlan)?.order > $currentPlan.order;
|
||||
$: isDowngrade = $plansInfo.get(billingPlan)?.order < $currentPlan.order;
|
||||
$: if (billingPlan !== BillingPlan.FREE) {
|
||||
loadPaymentMethods();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user