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

@ -1,7 +1,7 @@
<template>
<Dialog>
<DialogTrigger as-child>
<slot/>
<slot />
</DialogTrigger>
<DialogContent>
<DialogHeader>
@ -35,7 +35,7 @@
size="icon"
:title="m.sharp_big_mallard_reap()"
>
<LogOut/>
<LogOut />
</Button>
</div>
</div>
@ -46,11 +46,11 @@
</div>
<DialogFooter>
<Button :as="NuxtLink" href="/register" variant="outline">
<UserPlus/>
<UserPlus />
{{ m.honest_few_baboon_pop() }}
</Button>
<Button @click="signInAction">
<LogIn/>
<LogIn />
{{ m.sunny_pink_hyena_walk() }}
</Button>
</DialogFooter>

View file

@ -35,12 +35,12 @@ const authStore = useAuthStore();
:domain="authStore.instance.domain"
naked
/>
<ChevronsUpDown class="ml-auto size-4"/>
<ChevronsUpDown class="ml-auto size-4" />
</SidebarMenuButton>
<SidebarMenuButton v-else>
<UserPlus/>
<UserPlus />
{{ m.sunny_pink_hyena_walk() }}
<ChevronsUpDown class="ml-auto size-4"/>
<ChevronsUpDown class="ml-auto size-4" />
</SidebarMenuButton>
</AccountManager>
</SidebarMenuItem>
@ -52,7 +52,7 @@ const authStore = useAuthStore();
class="w-full group-data-[collapsible=icon]:px-4"
@click="useEvent('composer:open')"
>
<Pen/>
<Pen />
<span class="group-data-[collapsible=icon]:hidden">
{{ m.salty_aloof_turkey_nudge() }}
</span>
@ -63,7 +63,7 @@ const authStore = useAuthStore();
variant="secondary"
@click="useEvent('preferences:open')"
>
<Cog/>
<Cog />
Preferences
</Button>
<Button
@ -73,7 +73,7 @@ const authStore = useAuthStore();
class="w-full group-data-[collapsible=icon]:px-4"
@click="$pwa?.updateServiceWorker(true)"
>
<DownloadCloud/>
<DownloadCloud />
<span class="group-data-[collapsible=icon]:hidden">
{{ m.quaint_low_felix_pave() }}
</span>

View file

@ -1,12 +1,10 @@
<template>
<Sidebar collapsible="offcanvas">
<InstanceHeader/>
<InstanceHeader />
<SidebarContent>
<SidebarGroup>
<SidebarGroupLabel>
{{
m.trite_real_sawfish_drum()
}}
{{ m.trite_real_sawfish_drum() }}
</SidebarGroupLabel>
<NavItems
:items="
@ -17,8 +15,8 @@
/>
</SidebarGroup>
</SidebarContent>
<FooterActions/>
<SidebarRail/>
<FooterActions />
<SidebarRail />
</Sidebar>
</template>

View file

@ -32,7 +32,7 @@ defineProps<{
<SidebarMenuItem>
<CollapsibleTrigger as-child>
<SidebarMenuButton :tooltip="item.title">
<component :is="item.icon"/>
<component :is="item.icon" />
{{ item.title }}
<ChevronRight
class="ml-auto transition-transform group-data-[state=open]/collapsible:rotate-180"

View file

@ -16,7 +16,7 @@ defineProps<{
<SidebarMenuItem v-for="item in items" :key="item.title">
<SidebarMenuButton as-child>
<NuxtLink :href="item.url">
<component :is="item.icon"/>
<component :is="item.icon" />
<span>{{ item.title }}</span>
</NuxtLink>
</SidebarMenuButton>

View file

@ -6,7 +6,7 @@
style="--sidebar-width: 24rem; --sidebar-width-mobile: 18rem"
>
<SidebarContent class="overflow-y-auto *:p-2 *:gap-2">
<NotificationsTimeline/>
<NotificationsTimeline />
</SidebarContent>
</Sidebar>
</template>

View file

@ -14,15 +14,15 @@ const authStore = useAuthStore();
</script>
<template>
<LeftSidebar/>
<LeftSidebar />
<main class="grow h-dvh overflow-y-auto">
<header
v-if="showTimelines"
class="flex h-16 items-center bg-background/80 backdrop-blur-2xl sticky top-0 inset-x-0 z-10 p-4"
>
<Timelines/>
<Timelines />
</header>
<slot/>
<slot />
</main>
<RightSidebar
v-if="authStore.isSignedIn"