@forcecalendar/core 2.1.0 → 2.1.2

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.
@@ -108,7 +108,9 @@ export class StateManager {
108
108
  ...updates,
109
109
  // Preserve nested objects
110
110
  filters: updates.filters ? { ...oldState.filters, ...updates.filters } : oldState.filters,
111
- businessHours: updates.businessHours ? { ...oldState.businessHours, ...updates.businessHours } : oldState.businessHours,
111
+ businessHours: updates.businessHours
112
+ ? { ...oldState.businessHours, ...updates.businessHours }
113
+ : oldState.businessHours,
112
114
  metadata: updates.metadata ? { ...oldState.metadata, ...updates.metadata } : oldState.metadata
113
115
  };
114
116
 
@@ -571,4 +573,4 @@ export class StateManager {
571
573
  }
572
574
  }
573
575
  }
574
- }
576
+ }