chart data fixes

This commit is contained in:
2026-04-01 03:09:54 -04:00
parent 9e6a20c218
commit ca44e68f64
7 changed files with 102 additions and 16 deletions

View File

@@ -28,7 +28,7 @@ const rooms = computed(() => [{
avatar: null,
users: [
{ _id: CURRENT_USER_ID, username: 'You' },
{ _id: AGENT_ID, username: 'AI Agent', status: { state: isConnected.value ? 'online' : 'offline' } }
{ _id: AGENT_ID, username: 'AI Agent' }
],
unreadCount: 0,
typingUsers: isAgentProcessing.value ? [AGENT_ID] : []