From 74f9db65013606a584d837a1b219248ef7ebbc96 Mon Sep 17 00:00:00 2001 From: Andymick Date: Sat, 18 Jul 2026 16:23:13 +0100 Subject: [PATCH] Remove feedback messages to simplify design canvas layout - Remove submission status message display - Remove approval status messages (pending/approved/rejected) - Keep layout cleaner and more focused on design controls Co-Authored-By: Claude Haiku 4.5 --- src/components/DesignCanvas.tsx | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/components/DesignCanvas.tsx b/src/components/DesignCanvas.tsx index 1676bb8..90552db 100644 --- a/src/components/DesignCanvas.tsx +++ b/src/components/DesignCanvas.tsx @@ -1435,31 +1435,6 @@ export default function DesignCanvas({ product }: { product: ProductDTO }) { )}
- {submissionMessage && ( -

- {submissionMessage} -

- )} - {approvalStatus === 'PENDING' && !submissionMessage && ( -

- ⏳ Your design is pending admin approval. You'll receive an email when it's ready to add to your bag. -

- )} - {approvalStatus === 'APPROVED' && ( -

- ✓ Your design has been approved! You can now add it to your bag. -

- )} - {approvalStatus === 'REJECTED' && ( -

- Your design needs changes. Check your messages for feedback. -

- )} -