style: 🎨 Run Biome formatter

This commit is contained in:
Jesse Wierzbinski 2026-01-09 21:47:12 +01:00
parent 74c3b26f20
commit 68e23a818a
No known key found for this signature in database
244 changed files with 435 additions and 470 deletions

View file

@ -14,6 +14,6 @@ const forwarded = useForwardPropsEmits(props, emits);
<template>
<AlertDialogRoot data-slot="alert-dialog" v-bind="forwarded">
<slot/>
<slot />
</AlertDialogRoot>
</template>

View file

@ -20,6 +20,6 @@ const delegatedProps = computed(() => {
v-bind="delegatedProps"
:class="cn(buttonVariants(), props.class)"
>
<slot/>
<slot />
</AlertDialogAction>
</template>

View file

@ -24,6 +24,6 @@ const delegatedProps = computed(() => {
props.class,
)"
>
<slot/>
<slot />
</AlertDialogCancel>
</template>

View file

@ -40,7 +40,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
)
"
>
<slot/>
<slot />
</AlertDialogContent>
</AlertDialogPortal>
</template>

View file

@ -23,6 +23,6 @@ const delegatedProps = computed(() => {
v-bind="delegatedProps"
:class="cn('text-muted-foreground text-sm', props.class)"
>
<slot/>
<slot />
</AlertDialogDescription>
</template>

View file

@ -17,6 +17,6 @@ const props = defineProps<{
)
"
>
<slot/>
<slot />
</div>
</template>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="alert-dialog-header"
:class="cn('flex flex-col gap-2 text-center sm:text-left', props.class)"
>
<slot/>
<slot />
</div>
</template>

View file

@ -20,6 +20,6 @@ const delegatedProps = computed(() => {
v-bind="delegatedProps"
:class="cn('text-lg font-semibold', props.class)"
>
<slot/>
<slot />
</AlertDialogTitle>
</template>

View file

@ -6,6 +6,6 @@ const props = defineProps<AlertDialogTriggerProps>();
<template>
<AlertDialogTrigger data-slot="alert-dialog-trigger" v-bind="props">
<slot/>
<slot />
</AlertDialogTrigger>
</template>