From 864347d882276f72d155d3e17510725dd93d5779 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Mon, 20 Jan 2025 19:18:08 +0200 Subject: [PATCH] chore(ui): remove console.log --- front/src/components/ui/Pills.vue | 1 - front/src/components/ui/Section.vue | 2 -- 2 files changed, 3 deletions(-) diff --git a/front/src/components/ui/Pills.vue b/front/src/components/ui/Pills.vue index 37521bb7d..bc0480eb9 100644 --- a/front/src/components/ui/Pills.vue +++ b/front/src/components/ui/Pills.vue @@ -31,7 +31,6 @@ whenInteractive(()=> watchEffect(() => { if (!model.value.others) return const newLabel = selectedLabel.value; - console.log("newLabel", newLabel); selectedLabel.value = '+' if (!newLabel || newLabel==='+') return; if (!model.value.current.includes(newLabel) ){ diff --git a/front/src/components/ui/Section.vue b/front/src/components/ui/Section.vue index 8bbcef557..c51e6db2e 100644 --- a/front/src/components/ui/Section.vue +++ b/front/src/components/ui/Section.vue @@ -22,8 +22,6 @@ const heading = : props.h2 ? ({ h2: props.h2 }) as const : ({ h3: props.h3 }) as const -console.log("HEADING", heading) - const numberOfColumnsPerItem = 'noItems' in props && props.noItems ? 1 : 'tinyItems' in props && props.tinyItems ? 2 : 'smallItems' in props && props['smallItems'] ? 3 : 4