Merge pull request #2392 from appwrite/hide-scale-plan

Update: remove `scale` temporarily.
This commit is contained in:
Darshan
2025-09-20 17:05:29 +05:30
committed by GitHub
@@ -14,10 +14,13 @@
$: plans = Object.values(page.data.plans.plans) as Plan[];
$: currentPlanInList = plans.some((plan) => plan.$id === $currentPlan?.$id);
// experiment to remove scale plan temporarily
$: plansWithoutScale = plans.filter((plan) => plan.$id != BillingPlan.SCALE);
</script>
<Layout.Stack>
{#each plans as plan}
{#each plansWithoutScale as plan}
<LabelCard
name="plan"
bind:group={billingPlan}