From b3e3cf043b3890c2c5451cdccfc9bd9c9cc0ce05 Mon Sep 17 00:00:00 2001 From: Darshan Date: Fri, 7 Feb 2025 19:41:30 +0530 Subject: [PATCH] update: remove site domain tips. --- .../domains/add-domain/+page.svelte | 33 +------------------ 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/src/routes/(console)/project-[project]/sites/site-[site]/domains/add-domain/+page.svelte b/src/routes/(console)/project-[project]/sites/site-[site]/domains/add-domain/+page.svelte index 1f22d5e88..a4dcace9b 100644 --- a/src/routes/(console)/project-[project]/sites/site-[site]/domains/add-domain/+page.svelte +++ b/src/routes/(console)/project-[project]/sites/site-[site]/domains/add-domain/+page.svelte @@ -11,7 +11,6 @@ import { ResourceType, type Models } from '@appwrite.io/console'; import { Alert, - Accordion, Badge, Divider, Fieldset, @@ -68,27 +67,9 @@ }); } } - - type DomainTips = { - title: string; - message: string; - }; - - const siteDomainTips: DomainTips[] = [ - { - title: 'Why a Top-Level Domain (TLD) matters for your site?', - message: - 'A custom TLD helps create a unique web address, improves brand recognition, and makes your domain more memorable.' - }, - { - title: 'What is DNS and why do you need it?', - message: - "DNS (Domain Name System) translates your domain name into an IP address, directing visitors to your website. It's essential for making your site accessible and ensuring it loads properly for users." - } - ]; - + {#if domainData} {#if domainData.status === 'created'} @@ -143,18 +124,6 @@ {/if} - - - - {#each siteDomainTips as tips, i} - - {tips.message} - - {/each} - - - - {#if domainData}