Skip to content

Commit eea7064

Browse files
go
1 parent 7fe6c8e commit eea7064

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
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
}

test/components/FileUploader.nuxt.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ describe("FileUploader.vue", async () => {
5656

5757
await v_btn.trigger("click")
5858
await flushPromises()
59-
console.log("TEST WRAPPER EMITTED", wrapper.emitted())
6059
expect(wrapper.emitted().files_uploaded[0][0]).toEqual(files)
6160
})
6261

0 commit comments

Comments
 (0)