From 55e2570703dbd231a92447f489e02099ac554a74 Mon Sep 17 00:00:00 2001 From: Echo Date: Wed, 15 Apr 2026 12:21:22 +0200 Subject: [PATCH] [Glitch] Featured tab: Check if collections are enabled for loading status Port d9ea631d5911ebfe090e0d1ea1b11441aa58c918 to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/account_featured/index.tsx | 3 ++- 1 file changed, 2 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 23e8d0e122..463c229168 100644 --- a/app/javascript/flavours/glitch/features/account_featured/index.tsx +++ b/app/javascript/flavours/glitch/features/account_featured/index.tsx @@ -88,7 +88,8 @@ const AccountFeatured: React.FC<{ multiColumn: boolean }> = ({ const hasFeaturedAccounts = !featuredAccountIds.isEmpty(); - const isLoading = !accountId || collectionsLoadStatus !== 'idle'; + const isLoading = + !accountId || (collectionsEnabled && collectionsLoadStatus !== 'idle'); if (accountId === null) { return ;