This commit is contained in:
2024-08-04 23:03:06 +03:00
parent e82a0ecb5e
commit e9735a4e99
8 changed files with 46 additions and 42 deletions

View File

@ -61,7 +61,7 @@ export class AuthService {
const token = localStorage.getItem(ApiService.tokenKey);
if (!token)
return of();
return of({} as TokenResponse);
const authToken = JSON.parse(token) as AuthToken;