Skip to content

Commit

Permalink
Remove toasts after uploading #3352
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Sep 28, 2024
1 parent 7cd8d7f commit c5ecd35
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions client/pages/upload/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,6 @@ export default {
else itemsFailed++
this.updateItemCardStatus(item.index, result ? 'success' : 'failed')
}
if (itemsUploaded) {
this.$toast.success(`Successfully uploaded ${itemsUploaded} item${itemsUploaded > 1 ? 's' : ''}`)
}
if (itemsFailed) {
this.$toast.success(`Failed to upload ${itemsFailed} item${itemsFailed > 1 ? 's' : ''}`)
}
this.processing = false
this.uploadFinished = true
}
Expand Down

0 comments on commit c5ecd35

Please sign in to comment.