From d2dcc541a1d04091a8b91e464ecfae5f8ef54373 Mon Sep 17 00:00:00 2001 From: wvffle Date: Sun, 13 Nov 2022 16:00:45 +0000 Subject: [PATCH] Remove console.log --- front/src/components/auth/ApplicationForm.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/front/src/components/auth/ApplicationForm.vue b/front/src/components/auth/ApplicationForm.vue index d48efd096..407a0a30a 100644 --- a/front/src/components/auth/ApplicationForm.vue +++ b/front/src/components/auth/ApplicationForm.vue @@ -2,7 +2,7 @@ import type { BackendError, Application } from '~/types' import axios from 'axios' -import { ref, reactive, computed, watchEffect } from 'vue' +import { ref, reactive, computed } from 'vue' import { computedEager } from '@vueuse/core' import { useGettext } from 'vue3-gettext' import { uniq } from 'lodash-es' @@ -83,10 +83,6 @@ const toggleAllScopes = (parent: typeof allScopes['value'][number]) => { scopeArray.value = [...scopes] } -watchEffect(() => { - console.log(scopeArray.value) -}) - const scopeParents = computedEager(() => [ { id: 'read',