From aef70991f862ab0dfd173b54bb9de8609e6787f3 Mon Sep 17 00:00:00 2001 From: Echo Date: Tue, 24 Mar 2026 14:10:27 +0100 Subject: [PATCH] Profile redesign: Remove hashtags from featured page (#38363) --- .../mastodon/features/account_featured/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/javascript/mastodon/features/account_featured/index.tsx b/app/javascript/mastodon/features/account_featured/index.tsx index 59e632aa10..5cec2250ef 100644 --- a/app/javascript/mastodon/features/account_featured/index.tsx +++ b/app/javascript/mastodon/features/account_featured/index.tsx @@ -111,8 +111,11 @@ const AccountFeatured: React.FC<{ multiColumn: boolean }> = ({ ); } + const noTags = + featuredTags.isEmpty() || isServerFeatureEnabled('profile_redesign'); + if ( - featuredTags.isEmpty() && + noTags && featuredAccountIds.isEmpty() && listedCollections.length === 0 ) { @@ -158,7 +161,7 @@ const AccountFeatured: React.FC<{ multiColumn: boolean }> = ({ )} - {!featuredTags.isEmpty() && ( + {!noTags && ( <>