add to playlist context menu for playlist songs

This commit is contained in:
Kendall Garner
2025-12-06 17:55:12 -08:00
parent 0a7029f7bc
commit 766756f64a
@@ -162,7 +162,7 @@ export const AddToPlaylistAction = ({ items, itemType }: AddToPlaylistActionProp
try {
let allSongIds: string[] = [];
if (itemType === LibraryItem.SONG) {
if (itemType === LibraryItem.SONG || itemType === LibraryItem.PLAYLIST_SONG) {
allSongIds = items;
} else if (itemType === LibraryItem.ALBUM) {
for (const id of items) {