diff --git a/front/src/components/ui/Header.vue b/front/src/components/ui/Header.vue index 617e8e83a..84be1ae82 100644 --- a/front/src/components/ui/Header.vue +++ b/front/src/components/ui/Header.vue @@ -21,16 +21,11 @@ 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 - const { style, ...fallthroughProps } = useAttrs()