I’m still encountering issues with running your services correctly. The user availability in the user service is playing a key role in this. Could you check if you are able to retrieve the user as outlined in the provided code?
import { AuthService } from '@abp/ng.core';
import { Component } from '@angular/core';
import { UserProfileService } from '@volo/ngx-lepton-x.core';
@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.scss'],
})
export class HomeComponent {
  get hasLoggedIn(): boolean {
    return this.authService.isAuthenticated;
  }
  constructor(
    private authService: AuthService, 
    private userProfileService: UserProfileService
  ) {
    userProfileService.user$.subscribe(user => {
      console.log('🚀 ~ HomeComponent ~ userProfileService.user$.subscribe ~ user:', user);
    });
  }
  login() {
    this.authService.navigateToLogin();
  }
}
                        I understand your point now. Could you share your SignalR requests as well?
Hello, this problem should have been solved by this release with this PR.
Hello again,
I completely understand the issue you're facing. However, we're also encountering similar build errors in the project you've provided, which is making it difficult to assist further. As I mentioned earlier, I'll be consulting with my teammates as well. In the meantime, since the problem seems to stem from the frontend, it would be helpful if we could receive a fully working project to investigate further.
I tried to replicate the issue but was unable to do so. Based on your explanation, the problem seems to be on the frontend. I will also consult with my teammates to ensure we can assist you further.
Thank you for providing the details. I will review everything once more and get back to you shortly.