can anyone help ,,
so i have stored login data in a local storage key called login using @ngx-pwa
here i'm trying to get this data and display it but i'm getting undefined!
public customerProfile
ngOnInit() {
this.getProfileData();
console.log(this.cutomerProfile) //shows undefined
}
getProfileData() {
this.localStorage.getItem('login').subscribe((login) => {
this.customerProfile = login;
console.log(this.customerProfile.user) //shows login data
})
}