diff --git a/resources/js_vue3/components/OtpDisplay.vue b/resources/js_vue3/components/OtpDisplay.vue index b64da2b7..3ac6d5e8 100644 --- a/resources/js_vue3/components/OtpDisplay.vue +++ b/resources/js_vue3/components/OtpDisplay.vue @@ -150,7 +150,6 @@ if (error.response.status === 422) { emit('validation-error', error.response) } - console.log(error) //throw error }) .finally(() => { diff --git a/resources/js_vue3/views/Start.vue b/resources/js_vue3/views/Start.vue index 9facc796..ee85892f 100644 --- a/resources/js_vue3/views/Start.vue +++ b/resources/js_vue3/views/Start.vue @@ -28,7 +28,6 @@ form.qrcode = qrcodeInput.value.files[0] form.upload('/api/v1/qrcode/decode', { returnError: true }).then(response => { - console.log(response.data) if (response.data.data.slice(0, 33).toLowerCase() === "otpauth-migration://offline?data=") { bus.migrationUri = response.data.data router.push({ name: 'importAccounts' }) diff --git a/resources/js_vue3/views/auth/RequestReset.vue b/resources/js_vue3/views/auth/RequestReset.vue index ad187dbd..78bc3bc4 100644 --- a/resources/js_vue3/views/auth/RequestReset.vue +++ b/resources/js_vue3/views/auth/RequestReset.vue @@ -21,7 +21,6 @@ notify.success({ text: response.data.message, duration:-1 }) }) .catch(error => { - console.log(error) if( error.response.data.requestFailed ) { notify.alert({ text: error.response.data.requestFailed, duration:-1 }) } diff --git a/resources/js_vue3/views/twofaccounts/CreateUpdate.vue b/resources/js_vue3/views/twofaccounts/CreateUpdate.vue index 387a0064..bfcc2ad4 100644 --- a/resources/js_vue3/views/twofaccounts/CreateUpdate.vue +++ b/resources/js_vue3/views/twofaccounts/CreateUpdate.vue @@ -313,7 +313,6 @@ twofaccountService.getLogo(form.service, { returnError: true }) .then(response => { - console.log('enter fetchLogo response') if (response.status === 201) { // clean possible already uploaded temp icon deleteIcon()