diff --git a/src/routes/(console)/organization-[organization]/wizard/step2.svelte b/src/routes/(console)/organization-[organization]/wizard/step2.svelte index 847dfd7ca..907cc1f28 100644 --- a/src/routes/(console)/organization-[organization]/wizard/step2.svelte +++ b/src/routes/(console)/organization-[organization]/wizard/step2.svelte @@ -9,8 +9,8 @@ import type { Models } from '@appwrite.io/console'; import { page } from '$app/stores'; import { regions } from '$lib/stores/organization'; - import { goto } from '$app/navigation'; - import { upgradeURL } from '$lib/stores/billing'; + // import { goto } from '$app/navigation'; + // import { upgradeURL } from '$lib/stores/billing'; let prefs: Models.Preferences; @@ -84,18 +84,22 @@ name="region" bind:group={$createProject.region} value={region.$id} - disabled={region.disabled} + disabled={!region.available} autofocus={index === 0}>
- {#if region.disabled} + {#if region.disabled || !region.available} -

{region.name}

+

+ {region.name} +

{#if !notifications.includes(region.$id)} {region.name} - {#if !region.available} + {/if}