From 84e376a7cf33fd37ba9384222a120815b890bc2d Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 8 Dec 2023 17:03:08 -0600 Subject: [PATCH] Remove commented out toasts --- components/modals/ItemMoreMenuModal.vue | 6 ------ components/tables/podcast/EpisodeRow.vue | 1 - components/tables/podcast/LatestEpisodeRow.vue | 3 +-- pages/item/_id/_episode/index.vue | 6 ------ 4 files changed, 1 insertion(+), 15 deletions(-) diff --git a/components/modals/ItemMoreMenuModal.vue b/components/modals/ItemMoreMenuModal.vue index 3787e2a2..319598bc 100644 --- a/components/modals/ItemMoreMenuModal.vue +++ b/components/modals/ItemMoreMenuModal.vue @@ -388,9 +388,6 @@ export default { if (value) { const res = await AbsFileSystem.deleteTrackFromItem({ id: this.localLibraryItemId, trackLocalFileId: localFile.id, trackContentUrl: localEpisodeAudioTrack.contentUrl }) if (res?.id) { - - //this.$toast.success('Deleted episode successfully') - if (this.isLocal) { // If this is local episode then redirect to server episode when available if (this.serverEpisodeId) { @@ -416,9 +413,6 @@ export default { if (value) { const res = await AbsFileSystem.deleteItem(this.localLibraryItem) if (res?.success) { - - //this.$toast.success('Deleted successfully') - if (this.isLocal) { // If local then redirect to server version when available if (this.serverLibraryItemId) { diff --git a/components/tables/podcast/EpisodeRow.vue b/components/tables/podcast/EpisodeRow.vue index 989b9efc..36312d13 100644 --- a/components/tables/podcast/EpisodeRow.vue +++ b/components/tables/podcast/EpisodeRow.vue @@ -58,7 +58,6 @@