diff --git a/src/routes/console/createOrganization.svelte b/src/routes/console/createOrganization.svelte index 4209003bb..fe4fbc844 100644 --- a/src/routes/console/createOrganization.svelte +++ b/src/routes/console/createOrganization.svelte @@ -10,6 +10,7 @@ import { Submit, trackEvent, trackError } from '$lib/actions/analytics'; import { ID } from '@appwrite.io/console'; import Alert from '$lib/components/alert.svelte'; + import { isCloud } from '$lib/system'; export let show = false; @@ -44,15 +45,18 @@ - - Get ready for Appwrite Pro - We will soon introduce the much-anticipated Pro plan. Your account will continue to have access - to one free Starter organization. If you manage more than one organization, you will need to - either upgrade to the Pro plan, transfer your projects to a Pro organization, or migrate to self-hosting. - - - - + {#if isCloud} + + Get ready for Appwrite Pro + We will soon introduce the much-anticipated Pro plan. Your account will continue to have + access to one free Starter organization. If you manage more than one + organization, you will need to either upgrade to the Pro plan, transfer your projects to + a Pro organization, or migrate to self-hosting. + + + + + {/if}