This commit is contained in:
Peter Maquiran
2022-04-18 15:12:27 +01:00
parent 8c704ca898
commit 7de80902cf
14 changed files with 41 additions and 24 deletions
+3 -1
View File
@@ -61,7 +61,9 @@ export class AuthService {
}
if (localStorage.getItem("userChat") != null) {
this.ValidatedUserChat = JSON.parse(localStorage.getItem('userChat'));
this.ValidatedUserChat = {
data: JSON.parse(localStorage.getItem('userChat'))
};
}
}