diff --git a/app/soapbox/pages/profile-page.tsx b/app/soapbox/pages/profile-page.tsx index b2351e05b..75c4c7ecc 100644 --- a/app/soapbox/pages/profile-page.tsx +++ b/app/soapbox/pages/profile-page.tsx @@ -62,7 +62,7 @@ const ProfilePage: React.FC = ({ params, children }) => { if (account) { const ownAccount = account.id === me; - if (ownAccount || account.pleroma?.hide_favorites !== true) { + if (ownAccount || account.pleroma?.hide_favorites === false) { tabItems.push({ text: , to: `/@${account.acct}/favorites`,