chore(ui): remove console.log

This commit is contained in:
upsiflu 2025-01-20 19:18:08 +02:00
parent 8eeeb3f8f8
commit 864347d882
2 changed files with 0 additions and 3 deletions

View File

@ -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) ){

View File

@ -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