@dereekb/dbx-core 9.18.4 → 9.18.5

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.
@@ -730,7 +730,7 @@ class ActionContextStore extends ComponentStore {
730
730
  map((x) => x[0]), shareReplay(1));
731
731
  }
732
732
  afterDistinctLoadingStateTypeChange() {
733
- return this.state$.pipe(map((x) => [x, loadingStateForActionContextState(x)]), distinctUntilChanged((a, b) => a?.[1] === b?.[1]), // Filter out when the loading state remains the same.
733
+ return this.state$.pipe(map((x) => [x, loadingStateTypeForActionContextState(x)]), distinctUntilChanged((a, b) => a?.[1] === b?.[1]), // Filter out when the loading state remains the same.
734
734
  map((x) => x[0]), shareReplay(1));
735
735
  }
736
736
  // MARK: Cleanup