From d728f83a9364dd4d022366a2c77a4ade99cfd4fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=B7=E5=8D=8E=20=E5=88=98?= Date: Thu, 30 Nov 2023 10:06:24 +0000 Subject: [PATCH] fix: review comments --- src/routes/console/createOrganization.svelte | 22 ++++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) 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}