use unique id for places that may have duplicates

This commit is contained in:
Kendall Garner
2024-09-04 19:34:07 -07:00
parent 6b0c57998b
commit e6bd8deb0c
3 changed files with 3 additions and 3 deletions
@@ -66,7 +66,7 @@ export const AlbumArtistDetailTopSongsListContent = ({
ref={tableRef}
shouldUpdateSong
{...tableProps}
getRowId={(data) => data.data.id}
getRowId={(data) => data.data.uniqueId}
rowClassRules={rowClassRules}
rowData={data}
rowModelType="clientSide"