fix playlist grid view itemType to PLAYLIST_SONG to support remove from playlist

This commit is contained in:
jeffvli
2026-02-12 00:28:39 -08:00
parent 4adea11a93
commit c5ebfac647
@@ -95,7 +95,7 @@ export const PlaylistDetailSongListGrid = forwardRef<any, PlaylistDetailSongList
type: 'offset', type: 'offset',
}} }}
itemsPerRow={gridProps.itemsPerRowEnabled ? gridProps.itemsPerRow : undefined} itemsPerRow={gridProps.itemsPerRowEnabled ? gridProps.itemsPerRow : undefined}
itemType={LibraryItem.SONG} itemType={LibraryItem.PLAYLIST_SONG}
onScrollEnd={handleOnScrollEnd} onScrollEnd={handleOnScrollEnd}
rows={rows} rows={rows}
size={gridProps.size} size={gridProps.size}