diff --git a/front/src/components/ui/Button.vue b/front/src/components/ui/Button.vue index b95c65bfc..3a8da2368 100644 --- a/front/src/components/ui/Button.vue +++ b/front/src/components/ui/Button.vue @@ -38,11 +38,6 @@ const fontWeight = props.thinFont ? 400 : 900 const button = ref() -const attributes = computed(() => - color(props, ['interactive'])( - width(props, [isIconOnly.value ? 'minContent' : 'buttonWidth'])( - align(props, { alignSelf:'start', alignText:'center' })() -))) const click = async (...args: any[]) => { internalLoader.value = true @@ -60,17 +55,18 @@ onMounted(() => {