From 9bb4dfcfaae04cc4271ed566a4e8f6347530dd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90?= Date: Sat, 7 Jan 2023 03:33:45 +0800 Subject: [PATCH] fix: type --- components/timeline/TimelinePaginator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/timeline/TimelinePaginator.vue b/components/timeline/TimelinePaginator.vue index 5570fc33..6f5deed4 100644 --- a/components/timeline/TimelinePaginator.vue +++ b/components/timeline/TimelinePaginator.vue @@ -16,7 +16,7 @@ const { formatNumber } = useHumanReadableNumber() const virtualScroller = $(useFeatureFlag('experimentalVirtualScroll')) const showOriginSite = $computed(() => - account && account.id !== currentUser.value?.account.id && getServerName(account) !== currentServer.value, + account && account.id !== currentUser.value?.account?.id && getServerName(account) !== currentServer.value, )