From d2cc1c0f55f2baf19ab1baadf06dca9fb1ac055f Mon Sep 17 00:00:00 2001 From: Swadesh Behera Date: Wed, 9 Aug 2023 21:43:40 +0530 Subject: [PATCH 1/3] default to fashion theme --- src/lib/theme-config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/theme-config.ts b/src/lib/theme-config.ts index f51359cba..b74db3e51 100644 --- a/src/lib/theme-config.ts +++ b/src/lib/theme-config.ts @@ -1,3 +1,3 @@ -export * from '$lib/themes/misiki' -// export * from '$lib/themes/fashion' +// export * from '$lib/themes/misiki' +export * from '$lib/themes/fashion' // export * from '$lib/themes/varni' \ No newline at end of file From 4f39f71849dd13b65bcc267780ee42087b0349c0 Mon Sep 17 00:00:00 2001 From: Swadesh Behera Date: Wed, 15 Nov 2023 07:37:15 +0530 Subject: [PATCH 2/3] - --- vercel.json | 1 - 1 file changed, 1 deletion(-) diff --git a/vercel.json b/vercel.json index 72b97ca2a..09b1e6866 100644 --- a/vercel.json +++ b/vercel.json @@ -19,7 +19,6 @@ ], "env": { "PUBLIC_LITEKART_API_URL": "https://api.litekart.in", - "PUBLIC_LITEKART_DOMAIN": "demo.litekart.in", "NODE_OPTIONS": "--max-old-space-size=7680" } } From d0566740292ed144a6a33c3f4db5cb5bee17a33b Mon Sep 17 00:00:00 2001 From: Swadesh Behera Date: Wed, 15 Nov 2023 07:44:33 +0530 Subject: [PATCH 3/3] - --- src/routes/+layout.svelte | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 3b516933f..9ca5b047e 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -37,7 +37,7 @@ $: if (innerWidth < 1024) { showBackToTopButton = true } // let ReloadPrompt -const store = data.store +$: store = data.store onMount(async () => { if (browser) { @@ -85,7 +85,7 @@ onMount(async () => { {#if $navigating} {/if} - {#if !store} + {#if !data?.store}
@@ -102,7 +102,7 @@ onMount(async () => {
- {:else if store && !store?.closed} + {:else if data?.store && !data?.store?.closed}
@@ -117,9 +117,9 @@ onMount(async () => { {/if} - {#if store?.whatsappChatButton?.active?.val && store?.whatsappChatButton?.phone?.val} + {#if data?.store?.whatsappChatButton?.active?.val && data?.store?.whatsappChatButton?.phone?.val} @@ -144,7 +144,7 @@ onMount(async () => {
@@ -154,7 +154,7 @@ onMount(async () => {

- {store?.closedMessage} + {data?.store?.closedMessage}