From 0dfb22b5cf4fa208eb8bd8f1eb40fac5a5af6763 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 27 Dec 2025 20:51:53 +0000 Subject: [PATCH] Update StateTag component to include 'confirmed' status with purple color coding --- src/components/Dashboard/common/StateTag.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/Dashboard/common/StateTag.jsx b/src/components/Dashboard/common/StateTag.jsx index c378339..1dc62d5 100644 --- a/src/components/Dashboard/common/StateTag.jsx +++ b/src/components/Dashboard/common/StateTag.jsx @@ -101,9 +101,13 @@ const StateTag = ({ state, showBadge = true, style = {} }) => { text = 'Sent' break case 'acknowledged': - status = 'processing' + status = 'purple' text = 'Acknowledged' break + case 'confirmed': + status = 'purple' + text = 'Confirmed' + break case 'ordered': status = 'cyan' text = 'Ordered'