diff --git a/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx b/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx index 6789c3e00..817fa3d15 100644 --- a/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx +++ b/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx @@ -202,8 +202,12 @@ export const AddToPlaylistAction = ({ items, itemType }: AddToPlaylistActionProp } if (allSongIds.length === 0) { - toast.warn({ - message: t('common.noResultsFromQuery', { postProcess: 'sentenceCase' }), + toast.success({ + message: t('form.addToPlaylist.success', { + message: 0, + numOfPlaylists: 1, + postProcess: 'sentenceCase', + }), }); return; } @@ -241,8 +245,12 @@ export const AddToPlaylistAction = ({ items, itemType }: AddToPlaylistActionProp } if (songsToAdd.length === 0) { - toast.warn({ - message: t('common.noResultsFromQuery', { postProcess: 'sentenceCase' }), + toast.success({ + message: t('form.addToPlaylist.success', { + message: 0, + numOfPlaylists: 1, + postProcess: 'sentenceCase', + }), }); return; }