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 && ( <>