From d9ea631d5911ebfe090e0d1ea1b11441aa58c918 Mon Sep 17 00:00:00 2001 From: Echo Date: Wed, 15 Apr 2026 12:21:22 +0200 Subject: [PATCH] Featured tab: Check if collections are enabled for loading status (#38688) --- app/javascript/mastodon/features/account_featured/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/account_featured/index.tsx b/app/javascript/mastodon/features/account_featured/index.tsx index 4453bfc317..1b83b66dfd 100644 --- a/app/javascript/mastodon/features/account_featured/index.tsx +++ b/app/javascript/mastodon/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 ;