neoagent 2.3.1-beta.56 → 2.3.1-beta.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,15 +32,13 @@ enum AppSection {
32
32
  health,
33
33
  }
34
34
 
35
- enum SidebarGroup { chat, agents, recordings, activity, automation, settings }
35
+ enum SidebarGroup { chat, recordings, activity, automation, settings }
36
36
 
37
37
  extension SidebarGroupX on SidebarGroup {
38
38
  String get label {
39
39
  switch (this) {
40
40
  case SidebarGroup.chat:
41
41
  return 'Chat';
42
- case SidebarGroup.agents:
43
- return 'Agents';
44
42
  case SidebarGroup.recordings:
45
43
  return 'Recordings';
46
44
  case SidebarGroup.activity:
@@ -56,8 +54,6 @@ extension SidebarGroupX on SidebarGroup {
56
54
  switch (this) {
57
55
  case SidebarGroup.chat:
58
56
  return Icons.chat_bubble_outline;
59
- case SidebarGroup.agents:
60
- return Icons.smart_toy_outlined;
61
57
  case SidebarGroup.recordings:
62
58
  return Icons.fiber_smart_record_outlined;
63
59
  case SidebarGroup.activity:
@@ -171,9 +167,8 @@ extension AppSectionX on AppSection {
171
167
  case AppSection.settings:
172
168
  case AppSection.accountSettings:
173
169
  case AppSection.messaging:
174
- return SidebarGroup.settings;
175
170
  case AppSection.agents:
176
- return SidebarGroup.agents;
171
+ return SidebarGroup.settings;
177
172
  }
178
173
  }
179
174