From 51cf09b12565562c1ef9ca7ccce191cffcf47fd6 Mon Sep 17 00:00:00 2001 From: jingrow Date: Fri, 21 Nov 2025 09:26:25 +0800 Subject: [PATCH] Remove success notifications for background removal and download --- apps/jingrow/frontend/src/views/tools/RemoveBackground.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/jingrow/frontend/src/views/tools/RemoveBackground.vue b/apps/jingrow/frontend/src/views/tools/RemoveBackground.vue index 13fc598..7666ad6 100644 --- a/apps/jingrow/frontend/src/views/tools/RemoveBackground.vue +++ b/apps/jingrow/frontend/src/views/tools/RemoveBackground.vue @@ -442,8 +442,6 @@ const handleRemoveBackground = async () => { } else if (currentHistoryIndex.value >= 0) { historyList.value[currentHistoryIndex.value].resultImage = firstResult.image_url } - - message.success(t('Background removed successfully!')) } else { message.error(firstResult.error || t('Failed to remove background')) } @@ -510,8 +508,6 @@ const handleDownload = async () => { document.body.removeChild(link) URL.revokeObjectURL(blobUrl) }) - - message.success(t('Download started')) } catch (error: any) { console.error('下载图片失败:', error) message.error(t('Failed to download image'))