Activities of "sumeyye.kurtulus"

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.

I am not sure how you are actually handling the packages along with the app, but I am still getting build errors

I get your point, but this should be something not related to these conditions as you may also see from these records with these relative conditions:

  1. event.newValue !== null

  2. event.newValue === null

  3. No condition is provided

The problem persists there in the same way

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.

I have tested the app you provided, and it appears to be working as expected. I didn’t notice anything that might disrupt the process on the frontend, as demonstrated in this GIF.

Thank you for providing the details. I will review everything once more and get back to you shortly.

Showing 381 to 390 of 463 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41