chore(cleanup): no console.log in the app

This commit is contained in:
upsiflu 2024-12-22 21:26:45 +01:00
parent 79edf6a0a5
commit a49a311caa
3 changed files with 0 additions and 8 deletions

View File

@ -25,8 +25,6 @@ const labels = computed(() => ({
const podName = computed(() => (n => n === "" ? "No name" : n ?? 'Funkwhale')(get(nodeinfo.value, 'metadata.nodeName')))
console.log(podName)
const banner = computed(() => get(nodeinfo.value, 'metadata.banner'))
const shortDescription = computed(() => get(nodeinfo.value, 'metadata.shortDescription'))

View File

@ -27,10 +27,6 @@ const props = defineProps<{
& RaisedProps
& WidthProps>()
if ('minContent' in props) {
console.log("MIN CONTENT")
}
const slots = useSlots()
const isIconOnly = computed(() => !!props.icon && !slots.default)

View File

@ -16,8 +16,6 @@ watchEffect(() => measure.value = {
size: `${Math.max(size, minSize)}px`,
margin: `${(size-Math.max(size, minSize))/2}px`
})
console.log(size)
</script>
<template>