style: 🎨 Format code with Biome

This commit is contained in:
Jesse Wierzbinski 2025-12-09 22:32:22 +01:00
parent 7ff9d2302a
commit 3627ac0ef8
No known key found for this signature in database
296 changed files with 3257 additions and 2808 deletions

View file

@ -3,7 +3,7 @@
class="fixed md:hidden bottom-0 inset-x-0 border-t h-16 bg-background z-10 flex items-center justify-around *:h-full *:w-full gap-6 px-4 py-2 [&>a>svg]:size-5 [&>button>svg]:size-5"
>
<Button :as="NuxtLink" href="/" variant="ghost" size="icon">
<Home />
<Home/>
</Button>
<Button
:as="NuxtLink"
@ -11,10 +11,10 @@
variant="ghost"
size="icon"
>
<Bell />
<Bell/>
</Button>
<Button variant="ghost" size="icon">
<User />
<User/>
</Button>
<Button
variant="default"
@ -22,7 +22,7 @@
:title="m.salty_aloof_turkey_nudge()"
@click="useEvent('composer:open')"
>
<Pen />
<Pen/>
</Button>
</div>
</template>

View file

@ -1,9 +1,15 @@
<template>
<Tabs v-model:model-value="current">
<TabsList>
<TabsTrigger v-for="timeline in timelines.filter(
<TabsTrigger
v-for="timeline in timelines.filter(
i => i.requiresLogin ? authStore.isSignedIn : true,
)" :key="timeline.value" :value="timeline.value" :as="NuxtLink" :href="timeline.url">
)"
:key="timeline.value"
:value="timeline.value"
:as="NuxtLink"
:href="timeline.url"
>
{{ timeline.name }}
</TabsTrigger>
</TabsList>