@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.
@@ -2283,8 +2283,8 @@ class ChatDrawerComponent {
2283
2283
  }
2284
2284
  getStatusTextFromSessionRoles(sessionRoles) {
2285
2285
  if (!Array.isArray(sessionRoles) || sessionRoles.length === 0) {
2286
- return (this.getTranslation('You can join this meeting') ||
2287
- 'You can join this meeting');
2286
+ return (this.getTranslation('') ||
2287
+ '');
2288
2288
  }
2289
2289
  const first = sessionRoles[0];
2290
2290
  if (typeof first === 'string') {
@@ -2295,8 +2295,8 @@ class ChatDrawerComponent {
2295
2295
  if (first && typeof first === 'object' && first.description) {
2296
2296
  return String(first.description).trim();
2297
2297
  }
2298
- return (this.getTranslation('You can join this meeting') ||
2299
- 'You can join this meeting');
2298
+ return (this.getTranslation('') ||
2299
+ '');
2300
2300
  }
2301
2301
  mapSessionsToCardData(sessions) {
2302
2302
  if (!Array.isArray(sessions))