From 126b5ed67de981a6526638817283d961515d3514 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sat, 6 Dec 2025 17:11:01 -0800 Subject: [PATCH] notify when song added to playlist by context menu --- .../context-menu/actions/add-to-playlist-action.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) 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 1e676d502..2093f977f 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 @@ -219,6 +219,14 @@ export const AddToPlaylistAction = ({ items, itemType }: AddToPlaylistActionProp onSuccess: () => {}, }, ); + + toast.success({ + message: t('form.addToPlaylist.success', { + message: allSongIds.length, + numOfPlaylists: 1, + postProcess: 'sentenceCase', + }), + }); } catch (error) { toast.error({ message: (error as Error).message,