From ba1bba1a24630c08a55c0a3fd05a49fd0bb5d37c Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 30 Nov 2025 00:15:34 +0000 Subject: [PATCH] Add 'unconsumed' state to StateTag component with corresponding success status --- src/components/Dashboard/common/StateTag.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Dashboard/common/StateTag.jsx b/src/components/Dashboard/common/StateTag.jsx index cc8a320..331f292 100644 --- a/src/components/Dashboard/common/StateTag.jsx +++ b/src/components/Dashboard/common/StateTag.jsx @@ -92,6 +92,10 @@ const StateTag = ({ state, showBadge = true, style = {} }) => { status = 'warning' text = 'Used' break + case 'unconsumed': + status = 'success' + text = 'Unconsumed' + break default: status = 'default' text = state || 'Unknown'