File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
<script >
2
+ import { onMount } from ' svelte'
3
+
2
4
import { KQL_Settings } from ' ./graphql/_kitql/graphqlStores'
3
5
import GradiantButton from ' ./ui/GradiantButton.svelte'
4
6
import { store } from ' ./util'
7
+ onMount (async () => {
8
+ try {
9
+ await KQL_Settings .query ({ fetch })
10
+ } catch (e) {}
11
+ })
5
12
</script >
6
13
7
- <div class =" p-3 py-10 sm:p-10 text-gray-800" >
14
+ <div class =" p-3 py-10 text-gray-800 sm:p-10 " >
8
15
<div class =" container mx-auto flex max-w-7xl flex-col items-center justify-center" >
9
16
<div class =" mb-5 text-center capitalize" >
10
17
<p ><b >Home made food, Home delivered</b > <br /> Delivery only to Sunabeda Township</p >
11
18
</div >
12
-
13
19
<a
14
- href =" {$KQL_Settings .data ?.settings ?.ADMIN_PANEL_LINK }?role=vendor&store=$ {store .id }"
20
+ href =" {$KQL_Settings .data ?.settings ?.ADMIN_PANEL_LINK }?role=vendor&store= {store .id }"
15
21
target =" _blank"
16
- rel =" noopener noreferrer" >
22
+ rel =" noopener noreferrer external " >
17
23
<GradiantButton class =" w-60" >Join as Chef</GradiantButton >
18
24
</a >
19
25
</div >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ function submit() {
45
45
46
46
<div class =" mt-2 flex items-center justify-between font-medium" >
47
47
<h4 >Shipping fee</h4 >
48
- <h4 >{ $KQL_Cart ?. data ?. cart . shipping . charge } </h4 >
48
+ <h4 >FREE </h4 >
49
49
</div >
50
50
51
51
<!-- <p class="mt-1 text-xs tracking-wider text-gray-400 d">
You can’t perform that action at this time.
0 commit comments