@eric-emg/symphiq-components 1.2.313 → 1.2.314

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.
@@ -54311,7 +54311,17 @@ class SymphiqConnectGaDashboardComponent {
54311
54311
  this.previousPropertiesRef = undefined;
54312
54312
  this.propertiesReceivedEffect = effect(() => {
54313
54313
  const properties = this.gaProperties();
54314
+ const accounts = this.gaAccounts();
54315
+ console.log('[ConnectGA] propertiesReceivedEffect triggered');
54316
+ console.log('[ConnectGA] properties:', properties?.length ?? 0, 'accounts:', accounts?.length ?? 0);
54317
+ console.log('[ConnectGA] internalConnecting:', this.internalConnecting());
54318
+ console.log('[ConnectGA] isReconnecting:', this.isReconnecting());
54319
+ console.log('[ConnectGA] properties === previousRef:', properties === this.previousPropertiesRef);
54320
+ console.log('[ConnectGA] isConnecting():', this.isConnecting());
54321
+ console.log('[ConnectGA] isConnectState():', this.isConnectState());
54322
+ console.log('[ConnectGA] isSelectionState():', this.isSelectionState());
54314
54323
  if (this.internalConnecting() && properties && properties.length > 0 && properties !== this.previousPropertiesRef) {
54324
+ console.log('[ConnectGA] Resetting internalConnecting and isReconnecting to false');
54315
54325
  this.internalConnecting.set(false);
54316
54326
  this.isReconnecting.set(false);
54317
54327
  }