Merge pull request #2527 from appwrite/remove-early-access

This commit is contained in:
Darshan
2025-10-29 14:06:29 +05:30
committed by GitHub
+2 -15
View File
@@ -12,8 +12,7 @@
Button,
Layout,
Avatar,
Typography,
Badge
Typography
} from '@appwrite.io/pink-svelte';
import {
@@ -80,13 +79,7 @@
{ name: 'Functions', icon: IconLightningBolt, slug: 'functions', category: 'build' },
{ name: 'Messaging', icon: IconChatBubble, slug: 'messaging', category: 'build' },
{ name: 'Storage', icon: IconFolder, slug: 'storage', category: 'build' },
{
name: 'Sites',
icon: IconGlobeAlt,
slug: 'sites',
category: 'deploy',
badge: 'Early access'
}
{ name: 'Sites', icon: IconGlobeAlt, slug: 'sites', category: 'deploy' }
];
const isSelected = (service: string): boolean => {
@@ -239,12 +232,6 @@
class:has-text={state === 'open'}
class="link-text">
{projectOption.name}
{#if projectOption?.badge}
<Badge
variant="secondary"
content={projectOption.badge}
size="xs" />
{/if}
</span>
</a>
<span slot="tooltip">{projectOption.name}</span>