subscribeToLogoutClick() {
    this.userService.userLogout$
      .pipe(takeUntil(this.onDestroy$))
      .subscribe(() => this.logoutClick());
  }