Skip to content

Commit 3fc18b9

Browse files
committed
fix(View): remove warning
1 parent 47c086d commit 3fc18b9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

components/Launcher.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ onMounted(() => {
4444
}
4545
})
4646
47-
async function submit_recaptcha (token) {
47+
async function submit_recaptcha(token) {
4848
try {
4949
const response = await $fetch.raw(`/.netlify/functions/recaptcha?token=${token}`)
5050
cloud_store.$patch({ is_captcha_validated: response.status == 200 })
5151
recaptcha.reset()
5252
} catch (error) {
53+
console.error(error)
5354
}
5455
}
5556
</script>

components/Loading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
We start our server only on demand... and this takes a few minutes before
1313
you can use our free app.
1414
<br>
15-
This is aligned with an energy sobriety strategy. So be patient
15+
This is aligned with our energy sobriety policy. So be patient
1616
<v-icon color="primary" size="20">
1717
mdi-emoticon-excited-outline
1818
</v-icon>

components/RemoteRenderingView.client.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<template>
22
<div style="position: relative;">
33
<view-toolbar />
4-
<v-col v-element-size="resize" style="overflow: hidden; position: relative; z-index: 0; height: 100%; width: 100%"
5-
ref="viewer" @click="get_x_y" @keydown.esc="app_store.toggle_picking_mode(false)">
4+
<v-col style="overflow: hidden; position: relative; z-index: 0; height: 100%; width: 100%" ref="viewer"
5+
@click="get_x_y" @keydown.esc="app_store.toggle_picking_mode(false)">
66
</v-col>
77
</div>
88
</template>

composables/api_fetch.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
export async function api_fetch (request_url, request_options, { request_error_function, response_function, response_error_function } = {}) {
1+
export function api_fetch (request_url, request_options, { request_error_function, response_function, response_error_function } = {}) {
22
const errors_store = use_errors_store()
33
const cloud_store = use_cloud_store()
4-
54
return useFetch(request_url,
65
{
76
baseURL: cloud_store.geode_url,

0 commit comments

Comments
 (0)