From 762cb4bc0e1e88f6e6deacf6fae5e0f697012479 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sat, 6 Dec 2025 23:26:02 +0100 Subject: [PATCH] Remove duplicate upload success message in FileUpload component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the redundant "Upload Complete!" green banner that appeared at the bottom of the Pattern File section. The top blue banner "Pattern uploaded successfully!" already provides this information along with additional context about the locked state. This eliminates visual clutter and duplicate messaging while keeping the more informative message that explains the pattern is locked. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/components/FileUpload.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/components/FileUpload.tsx b/src/components/FileUpload.tsx index 6718649..b9e406a 100644 --- a/src/components/FileUpload.tsx +++ b/src/components/FileUpload.tsx @@ -234,16 +234,6 @@ export function FileUpload({

Please wait while your pattern is being transferred...

)} - - {uploadProgress === 100 && ( -
- -
-

Upload Complete!

-

Pattern successfully transferred to machine

-
-
- )} );