Featured tab: Check if collections are enabled for loading status (#38688)

This commit is contained in:
Echo 2026-04-15 12:21:22 +02:00 committed by GitHub
parent e9af9c649f
commit d9ea631d59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 <BundleColumnError multiColumn={multiColumn} errorType='routing' />;