From 6d3cf92a2b7361d98fec682786d765ace424275e Mon Sep 17 00:00:00 2001 From: Echo Date: Tue, 24 Mar 2026 14:10:27 +0100 Subject: [PATCH] [Glitch] Profile redesign: Remove hashtags from featured page Port aef70991f862ab0dfd173b54bb9de8609e6787f3 to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/account_featured/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/features/account_featured/index.tsx b/app/javascript/flavours/glitch/features/account_featured/index.tsx index bcac758f6f..0d9d92a0e0 100644 --- a/app/javascript/flavours/glitch/features/account_featured/index.tsx +++ b/app/javascript/flavours/glitch/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 && ( <>