@hivegpt/hiveai-angular 0.0.597 → 0.0.598

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.
@@ -2266,8 +2266,8 @@ class ChatDrawerComponent {
2266
2266
  }
2267
2267
  getStatusTextFromSessionRoles(sessionRoles) {
2268
2268
  if (!Array.isArray(sessionRoles) || sessionRoles.length === 0) {
2269
- return (this.getTranslation('You can join this meeting') ||
2270
- 'You can join this meeting');
2269
+ return (this.getTranslation('') ||
2270
+ '');
2271
2271
  }
2272
2272
  const first = sessionRoles[0];
2273
2273
  if (typeof first === 'string') {
@@ -2278,8 +2278,8 @@ class ChatDrawerComponent {
2278
2278
  if (first && typeof first === 'object' && first.description) {
2279
2279
  return String(first.description).trim();
2280
2280
  }
2281
- return (this.getTranslation('You can join this meeting') ||
2282
- 'You can join this meeting');
2281
+ return (this.getTranslation('') ||
2282
+ '');
2283
2283
  }
2284
2284
  mapSessionsToCardData(sessions) {
2285
2285
  if (!Array.isArray(sessions))