diff --git a/src/lib/layout/containerButton.svelte b/src/lib/layout/containerButton.svelte
index facdf58c56..e0b0512d35 100644
--- a/src/lib/layout/containerButton.svelte
+++ b/src/lib/layout/containerButton.svelte
@@ -7,10 +7,10 @@
export let title: string;
export let tooltipContent =
- $organization.billingPlan === BillingPlan.FREE
+ $organization?.billingPlan === BillingPlan.FREE
? `Upgrade to add more ${title.toLocaleLowerCase()}`
: `You've reached the ${title.toLocaleLowerCase()} limit for the ${
- tierToPlan($organization.billingPlan).name
+ tierToPlan($organization?.billingPlan)?.name
} plan`;
export let disabled: boolean;
export let buttonText: string;
diff --git a/src/lib/wizards/functions/cover.svelte b/src/lib/wizards/functions/cover.svelte
index 27409c2c87..c212b6b474 100644
--- a/src/lib/wizards/functions/cover.svelte
+++ b/src/lib/wizards/functions/cover.svelte
@@ -24,7 +24,7 @@
@@ -74,23 +68,7 @@
{$template.tagline}
- {#if isSelfHosted && !isVcsEnabled}
-
-
- Cloning templates to a self-hosted instance
-
- In order to clone a template to a locally hosted Appwrite project, you must set
- up a Git integration and configure your environment variables.
-
-
-
-
- {/if}
+