diff --git a/src/pages/agent-office/AgentOffice.css b/src/pages/agent-office/AgentOffice.css index 35030fe..eebd63d 100644 --- a/src/pages/agent-office/AgentOffice.css +++ b/src/pages/agent-office/AgentOffice.css @@ -97,7 +97,6 @@ .ao-card-dot.working { background: #22c55e; } .ao-card-dot.error { background: #ef4444; } .ao-card-dot.waiting_approval { background: #f59e0b; } -.ao-card-dot.break { background: #94a3b8; } .ao-card-dot.pulse { animation: ao-pulse 1.6s ease-in-out infinite; } diff --git a/src/pages/agent-office/constants.js b/src/pages/agent-office/constants.js index 6e272b5..5f3f05b 100644 --- a/src/pages/agent-office/constants.js +++ b/src/pages/agent-office/constants.js @@ -38,7 +38,6 @@ export const STATE_COLORS = { working: { color: '#22c55e', pulse: true }, error: { color: '#ef4444', pulse: false }, waiting_approval: { color: '#f59e0b', pulse: true }, - break: { color: '#94a3b8', pulse: false }, }; export const DEFAULT_STATE_COLOR = STATE_COLORS.idle;