You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export class UserStore {
private user: User = null;
protected userState$ = new BehaviorSubject(this.user);
angular 11/nebular 7 build gives error: UserStore - Property "user" is used before its initialization
previous versios gives only warning on build succees but on newer versions build faild on error.
I bought this code and it won't work!!!
The text was updated successfully, but these errors were encountered:
export class UserStore {
private user: User = null;
protected userState$ = new BehaviorSubject(this.user);
angular 11/nebular 7 build gives error: UserStore - Property "user" is used before its initialization
previous versios gives only warning on build succees but on newer versions build faild on error.
I bought this code and it won't work!!!
The text was updated successfully, but these errors were encountered: