From 0a7d0105ff04c22fc79a1ea4e31245e8529203b1 Mon Sep 17 00:00:00 2001 From: oakes Date: Mon, 31 Jul 2023 13:29:27 -0400 Subject: [PATCH] Default to hiding Likes tab --- app/soapbox/pages/profile-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`,