File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,7 @@ const websocket_store = use_websocket_store()
22
22
const cloud_store = use_cloud_store ()
23
23
const { is_cloud_running , is_captcha_validated , is_connexion_launched } = storeToRefs (cloud_store)
24
24
25
- const props = defineProps ({
26
- site_key: { type: String , required: true }
27
- })
28
-
29
- const { site_key } = toRefs (props)
25
+ const site_key = useRuntimeConfig ().public .RECAPTCHA_SITE_KEY
30
26
31
27
watch (is_captcha_validated, async (value ) => {
32
28
if (value === true && process .client ) {
@@ -44,7 +40,7 @@ onMounted(() => {
44
40
}
45
41
})
46
42
47
- async function submit_recaptcha (token ) {
43
+ async function submit_recaptcha (token ) {
48
44
try {
49
45
const response = await $fetch .raw (` /.netlify/functions/recaptcha?token=${ token} ` )
50
46
cloud_store .$patch ({ is_captcha_validated: response .status == 200 })
Original file line number Diff line number Diff line change 5
5
<Header :tool_name =" tool_name" :cards_list =" cards_list" />
6
6
</v-col >
7
7
<v-col v-if =" !is_cloud_running" >
8
- <Launcher :site_key = " site_key " />
8
+ <Launcher />
9
9
</v-col >
10
10
<v-col v-if =" is_cloud_running" >
11
11
<Stepper />
@@ -23,9 +23,8 @@ const { is_cloud_running } = storeToRefs(cloud_store)
23
23
24
24
const props = defineProps ({
25
25
cards_list: { type: Array , required: true },
26
- site_key: { type: String , required: true }
27
26
})
28
- const { cards_list , site_key } = props
27
+ const { cards_list } = props
29
28
30
29
const stepper_tree = inject (' stepper_tree' )
31
30
const { tool_name , route_prefix } = stepper_tree
You can’t perform that action at this time.
0 commit comments