From 19a8c807626ef3b7ec46ac6ad5ddbb4b6ec586d1 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Tue, 10 Mar 2026 11:02:03 +0100 Subject: [PATCH] [Glitch] Fix collections not shown on profile when there are no featured tags or accounts Port 7d58ce309c12fcda44e79420d2d5a197c47efbea to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/account_featured/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/account_featured/index.tsx b/app/javascript/flavours/glitch/features/account_featured/index.tsx index fa55a153f6..fa625d6eee 100644 --- a/app/javascript/flavours/glitch/features/account_featured/index.tsx +++ b/app/javascript/flavours/glitch/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 (