Skip to content

Commit 8bc5fa2

Browse files
authored
Merge pull request #2527 from appwrite/remove-early-access
2 parents 8b9feaf + 297e8a1 commit 8bc5fa2

1 file changed

Lines changed: 2 additions & 15 deletions

File tree

src/lib/components/sidebar.svelte

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
Button,
1313
Layout,
1414
Avatar,
15-
Typography,
16-
Badge
15+
Typography
1716
} from '@appwrite.io/pink-svelte';
1817
1918
import {
@@ -80,13 +79,7 @@
8079
{ name: 'Functions', icon: IconLightningBolt, slug: 'functions', category: 'build' },
8180
{ name: 'Messaging', icon: IconChatBubble, slug: 'messaging', category: 'build' },
8281
{ name: 'Storage', icon: IconFolder, slug: 'storage', category: 'build' },
83-
{
84-
name: 'Sites',
85-
icon: IconGlobeAlt,
86-
slug: 'sites',
87-
category: 'deploy',
88-
badge: 'Early access'
89-
}
82+
{ name: 'Sites', icon: IconGlobeAlt, slug: 'sites', category: 'deploy' }
9083
];
9184
9285
const isSelected = (service: string): boolean => {
@@ -239,12 +232,6 @@
239232
class:has-text={state === 'open'}
240233
class="link-text">
241234
{projectOption.name}
242-
{#if projectOption?.badge}
243-
<Badge
244-
variant="secondary"
245-
content={projectOption.badge}
246-
size="xs" />
247-
{/if}
248235
</span>
249236
</a>
250237
<span slot="tooltip">{projectOption.name}</span>

0 commit comments

Comments
 (0)