@vgroup/dialbox 0.0.40 → 0.0.42

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.
@@ -1736,17 +1736,12 @@ class CallProgressComponent {
1736
1736
  console.log('Call Progress Component');
1737
1737
  }
1738
1738
  ngOnChanges(changes) {
1739
- // console.log('Call Progress Component ngOnChanges');
1740
- // console.log('Call Progress Component ngOnChanges changes', changes);
1741
1739
  if (changes['callData']) {
1742
- // console.log('Call Progress Component ngOnChanges callData', changes['callData'].currentValue);
1743
1740
  if (changes['callData'].currentValue?.isIncomingCall) {
1744
- // console.log('Incoming call detected, showing incoming call UI');
1745
1741
  this.incomingCallDiv = true;
1746
- this.cdr.detectChanges(); // Trigger change detection
1742
+ this.cdr.detectChanges();
1747
1743
  }
1748
1744
  else {
1749
- // For outgoing call
1750
1745
  this.startCall(changes['callData'].currentValue);
1751
1746
  }
1752
1747
  }