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 ;