From b6ac95491031bbdac0220cdbb6ed658ca6b9a7dd Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 8 Dec 2025 19:53:48 -0800 Subject: [PATCH] use correct list key for related songs on fullscreen player (#1343) --- .../similar-songs/components/similar-songs-list.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/renderer/features/similar-songs/components/similar-songs-list.tsx b/src/renderer/features/similar-songs/components/similar-songs-list.tsx index 16390e201..9ecfca648 100644 --- a/src/renderer/features/similar-songs/components/similar-songs-list.tsx +++ b/src/renderer/features/similar-songs/components/similar-songs-list.tsx @@ -26,7 +26,6 @@ export const SimilarSongsList = ({ count, song }: SimilarSongsListProps) => { gcTime: 1000 * 60 * 2, }, query: { - albumArtistIds: song.albumArtists.map((art) => art.id), count, songId: song.id, }, @@ -34,15 +33,15 @@ export const SimilarSongsList = ({ count, song }: SimilarSongsListProps) => { }), ); - const { table } = useListSettings(ItemListKey.SONG); + const { table } = useListSettings(ItemListKey.FULL_SCREEN); const { table: fullScreenTable } = useListSettings(ItemListKey.FULL_SCREEN); const { handleColumnReordered } = useItemListColumnReorder({ - itemListKey: ItemListKey.SONG, + itemListKey: ItemListKey.FULL_SCREEN, }); const { handleColumnResized } = useItemListColumnResize({ - itemListKey: ItemListKey.SONG, + itemListKey: ItemListKey.FULL_SCREEN, }); const tableData = useMemo(() => {