fix: 🚑 Add missing user account from username viewing route

This commit is contained in:
Jesse Wierzbinski 2024-04-30 23:18:26 -10:00
parent d9173b4ce2
commit eb0385ab8a
No known key found for this signature in database

View file

@ -1,7 +1,7 @@
<template> <template>
<NuxtLayout name="app"> <NuxtLayout name="app">
<div class="max-h-dvh overflow-y-scroll"> <div class="max-h-dvh overflow-y-scroll">
<SocialElementsUsersAccount v-if="isMobile" :account="account ?? undefined" />
<TimelinesTimelineScroller> <TimelinesTimelineScroller>
<TimelinesAccount :id="accountId ?? undefined" :key="accountId ?? undefined" /> <TimelinesAccount :id="accountId ?? undefined" :key="accountId ?? undefined" />
</TimelinesTimelineScroller> </TimelinesTimelineScroller>
@ -20,7 +20,6 @@ import type { Account } from "~/types/mastodon/account";
definePageMeta({ definePageMeta({
layout: false, layout: false,
keepalive: true,
}); });
const { width } = useWindowSize(); const { width } = useWindowSize();