diff --git a/src/apps/stable/features/search/api/useSearchItems.ts b/src/apps/stable/features/search/api/useSearchItems.ts index 0f7b44ad18..e16bdd67f7 100644 --- a/src/apps/stable/features/search/api/useSearchItems.ts +++ b/src/apps/stable/features/search/api/useSearchItems.ts @@ -85,6 +85,14 @@ export const useSearchItems = ( return sortSections(sections); }, - enabled: !!api && !!userId && !!isArtistsEnabled && !!isPeopleEnabled && !!isVideosEnabled && !!isLiveTvEnabled && !!isProgramsEnabled + enabled: ( + !!api + && !!userId + && !!isArtistsEnabled + && !!isPeopleEnabled + && !!isVideosEnabled + && !!isLiveTvEnabled + && !!isProgramsEnabled + ) }); };