use correct list key for related songs on fullscreen player (#1343)

This commit is contained in:
jeffvli
2025-12-08 19:53:48 -08:00
parent 76b59921f1
commit b6ac954910
@@ -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(() => {