diff --git a/src/components/Dashboard/common/StateTag.jsx b/src/components/Dashboard/common/StateTag.jsx index b0f5c5d..b149859 100644 --- a/src/components/Dashboard/common/StateTag.jsx +++ b/src/components/Dashboard/common/StateTag.jsx @@ -56,9 +56,9 @@ const StateTag = ({ state, showBadge = true, style = {} }) => { status = 'success' text = 'Ready' break - case 'unconsumed': + case 'new': status = 'success' - text = 'Unconsumed' + text = 'New' break case 'error': status = 'error' @@ -80,6 +80,10 @@ const StateTag = ({ state, showBadge = true, style = {} }) => { status = 'warning' text = 'Queued' break + case 'used': + status = 'warning' + text = 'Used' + break default: status = 'default' text = state || 'Unknown'