diff --git a/app/javascript/mastodon/features/account_timeline/components/menu.tsx b/app/javascript/mastodon/features/account_timeline/components/menu.tsx index cd1ec82e4f..6ef0375702 100644 --- a/app/javascript/mastodon/features/account_timeline/components/menu.tsx +++ b/app/javascript/mastodon/features/account_timeline/components/menu.tsx @@ -212,13 +212,14 @@ function currentMenuItems({ } if (isRemote) { - items.push( - { - text: intl.formatMessage(messages.openOriginalPage), - href: account.url, - }, - null, - ); + items.push({ + text: intl.formatMessage(messages.openOriginalPage), + href: account.url, + }); + + if (signedIn) { + items.push(null); + } } if (!signedIn) {