cat-qw-lib 2.3.13 → 2.3.16

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.
@@ -6423,9 +6423,8 @@ class QueueRecordTableBuilderService extends TableBuilder {
6423
6423
  else {
6424
6424
  // Only applicants, show full names
6425
6425
  value.forEach((applicant) => {
6426
- const fullName = `${applicant.firstName || ''} ${applicant.lastName || ''}`.trim();
6427
- if (fullName) {
6428
- const truncatedName = fullName.length > 15 ? fullName.substring(0, 12) + '...' : fullName;
6426
+ if (applicant.fullName) {
6427
+ const truncatedName = applicant.fullName.length > 15 ? applicant.fullName.substring(0, 12) + '...' : applicant.fullName;
6429
6428
  bubbles.push({
6430
6429
  fullName: truncatedName,
6431
6430
  isCompany: false,