From 9d44f0fc085e078a160a75fd01d5825860fbfdee Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:26:47 -0700 Subject: [PATCH] [bugfix]: don't be loading if top songs disabled --- .../features/artists/components/album-artist-detail-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/artists/components/album-artist-detail-content.tsx b/src/renderer/features/artists/components/album-artist-detail-content.tsx index 025d877d..ef0da400 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -373,7 +373,7 @@ export const AlbumArtistDetailContent = ({ background }: AlbumArtistDetailConten const isLoading = detailQuery?.isLoading || - (server?.type === ServerType.NAVIDROME && topSongsQuery?.isLoading); + (server?.type === ServerType.NAVIDROME && enabledItem.topSongs && topSongsQuery?.isLoading); if (isLoading) return ;