fix invalid comparison on detail rating column hide condition

This commit is contained in:
jeffvli
2026-02-12 01:40:01 -08:00
parent 1d8e1957ba
commit 0d2dddddbc
@@ -60,7 +60,6 @@ export function shouldShowHoverOnlyColumnContent(
return (
isRowHovered ||
(columnId === TableColumn.USER_FAVORITE && song.userFavorite !== false) ||
(columnId === TableColumn.USER_RATING &&
(song.userRating !== null || song.userRating !== 0))
(columnId === TableColumn.USER_RATING && song.userRating !== null && song.userRating !== 0)
);
}