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 ;