diff --git a/client/components/modals/playlists/AddCreateModal.vue b/client/components/modals/playlists/AddCreateModal.vue index e089324f..d1f910b8 100644 --- a/client/components/modals/playlists/AddCreateModal.vue +++ b/client/components/modals/playlists/AddCreateModal.vue @@ -130,7 +130,6 @@ export default { .$post(`/api/playlists/${playlist.id}/batch/remove`, { items: itemObjects }) .then((updatedPlaylist) => { console.log(`Items removed from playlist`, updatedPlaylist) - this.$toast.success(this.$strings.ToastPlaylistUpdateSuccess) this.processing = false }) .catch((error) => { @@ -148,7 +147,6 @@ export default { .$post(`/api/playlists/${playlist.id}/batch/add`, { items: itemObjects }) .then((updatedPlaylist) => { console.log(`Items added to playlist`, updatedPlaylist) - this.$toast.success(this.$strings.ToastPlaylistUpdateSuccess) this.processing = false }) .catch((error) => { @@ -174,7 +172,6 @@ export default { .$post('/api/playlists', newPlaylist) .then((data) => { console.log('New playlist created', data) - this.$toast.success(this.$strings.ToastPlaylistCreateSuccess + ': ' + data.name) this.processing = false this.newPlaylistName = '' }) diff --git a/client/components/tables/playlist/ItemTableRow.vue b/client/components/tables/playlist/ItemTableRow.vue index 9f1a7e87..0cb73f9c 100644 --- a/client/components/tables/playlist/ItemTableRow.vue +++ b/client/components/tables/playlist/ItemTableRow.vue @@ -218,7 +218,6 @@ export default { this.$toast.success(this.$strings.ToastPlaylistRemoveSuccess) } else { console.log(`Item removed from playlist`, updatedPlaylist) - this.$toast.success(this.$strings.ToastPlaylistUpdateSuccess) } }) .catch((error) => {