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

@ -16,23 +16,21 @@
<span
class="truncate font-semibold"
v-render-emojis="follower.emojis"
>{{
follower.display_name
}}</span
>{{ follower.display_name }}</span
>
<span class="truncate tracking-tight">
<Address :username="username" :domain="domain"/>
<Address :username="username" :domain="domain" />
</span>
</div>
</div>
<div v-if="loading" class="flex p-2 items-center justify-center h-12">
<Loader class="size-4 animate-spin"/>
<Loader class="size-4 animate-spin" />
</div>
<div
v-else-if="relationship?.requested_by === false"
class="flex p-2 items-center justify-center h-12"
>
<Check class="size-4"/>
<Check class="size-4" />
</div>
<div v-else class="grid grid-cols-2 p-2 gap-2">
<Button
@ -41,7 +39,7 @@
@click="accept"
:title="m.slow_these_kestrel_sail()"
>
<Check/>
<Check />
</Button>
<Button
variant="ghost"
@ -49,7 +47,7 @@
@click="reject"
:title="m.weary_steep_yak_embrace()"
>
<X/>
<X />
</Button>
</div>
</template>

View file

@ -7,7 +7,7 @@
v-if="notification.account"
class="flex flex-row items-center gap-2 px-2"
>
<component :is="icon" class="size-5 shrink-0"/>
<component :is="icon" class="size-5 shrink-0" />
<Avatar
class="size-5 border border-card"
:src="notification.account.avatar"
@ -25,7 +25,7 @@
class="ml-auto [&_svg]:data-[state=open]:-rotate-180"
:title="open ? 'Collapse' : 'Expand'"
>
<ChevronDown class="duration-200"/>
<ChevronDown class="duration-200" />
</Button>
</CollapsibleTrigger>
</CardHeader>