@dereekb/dbx-core 13.41.0 → 13.43.0

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.
@@ -4846,7 +4846,7 @@ class DbxAppAuthEffects {
4846
4846
  /**
4847
4847
  * Syncs the user's auth roles from the auth service into the NgRx store.
4848
4848
  */
4849
- setUserRoles = createEffect(() => this.dbxAuthService.authRoles$.pipe(map((roles) => setUserRoles({ roles: [...(roles ?? [])] }))));
4849
+ setUserRoles = createEffect(() => this.dbxAuthService.authRoles$.pipe(map((roles) => setUserRoles({ roles: Array.from(roles ?? []) }))));
4850
4850
  /**
4851
4851
  * Syncs the user's onboarding status from the auth service into the NgRx store.
4852
4852
  */
@@ -8016,7 +8016,6 @@ class AbstractFilterSourceDirective {
8016
8016
  }
8017
8017
  setDefaultFilter(defaultFilter) {
8018
8018
  this._defaultFilterSource.setDefaultFilter(defaultFilter);
8019
- console.log('Setting default filter: ', defaultFilter);
8020
8019
  }
8021
8020
  initWithFilter(filterObs) {
8022
8021
  this._defaultFilterSource.initWithFilter(filterObs);