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