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