Skip to content

Commit 65640f1

Browse files
fix(captcha): patch validated on desktop mode
1 parent c962f21 commit 65640f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Recaptcha.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
onMounted(() => {
2323
if (process.client) {
2424
const config = useRuntimeConfig()
25-
if (config.public.NODE_ENV !== "production") {
25+
if (config.public.NODE_ENV !== "production" || !infra_store.is_cloud) {
2626
infra_store.$patch({ is_captcha_validated: true })
2727
}
2828
}

0 commit comments

Comments
 (0)