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