From 7d58ce309c12fcda44e79420d2d5a197c47efbea Mon Sep 17 00:00:00 2001 From: diondiondion Date: Tue, 10 Mar 2026 11:02:03 +0100 Subject: [PATCH] Fix collections not shown on profile when there are no featured tags or accounts (#38113) --- app/javascript/mastodon/features/account_featured/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/account_featured/index.tsx b/app/javascript/mastodon/features/account_featured/index.tsx index 1172ff3dc5..57edf04b64 100644 --- a/app/javascript/mastodon/features/account_featured/index.tsx +++ b/app/javascript/mastodon/features/account_featured/index.tsx @@ -103,7 +103,11 @@ const AccountFeatured: React.FC<{ multiColumn: boolean }> = ({ ); } - if (featuredTags.isEmpty() && featuredAccountIds.isEmpty()) { + if ( + featuredTags.isEmpty() && + featuredAccountIds.isEmpty() && + listedCollections.length === 0 + ) { return (