From bc1cff21c54712b45a0d0857b393274320fef7a6 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 22 Jan 2026 09:45:59 -0700 Subject: [PATCH] fix: Prevent 'duplicate' status from triggering success banner --- frontend/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app.js b/frontend/app.js index 6e6e94a..79db1dc 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -160,7 +160,7 @@ function render(){ if (!allCompleteBannerShown && items.length > 0) { const isComplete = items.every(it => FINAL_STATES.has(it.status)); - const hasSuccess = items.some(it => it.status === 'done' || it.status === 'duplicate'); + const hasSuccess = items.some(it => it.status === 'done'); if (isComplete && hasSuccess) { showBanner("All uploads complete.", "ok"); allCompleteBannerShown = true;