@dereekb/dbx-form 9.15.8 → 9.16.1

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.
@@ -325,7 +325,7 @@ function dbxFormSourceObservableFromStream(stream$, inputObs, mode$) {
325
325
  }
326
326
  else {
327
327
  // pass any updated value while not initializing.
328
- return state$.pipe(map((x) => x === DbxFormState.INITIALIZING), switchMap((initializing) => {
328
+ return state$.pipe(map((x) => x === DbxFormState.INITIALIZING), distinctUntilChanged(), switchMap((initializing) => {
329
329
  if (initializing) {
330
330
  return EMPTY;
331
331
  }