fixed lint errors

This commit is contained in:
Timo Bejan 2020-10-15 15:54:14 +03:00
parent 7d3cd68e41
commit 59d0cdb11b

View File

@ -30,8 +30,8 @@ export class AuthGuard implements CanActivate {
this
._oauthService
.silentRefresh()
.then(info => console.debug('refresh ok', info))
.catch(err => console.error('refresh error', err));
.then(info => console.log('refresh ok', info))
.catch(err => console.log('refresh error', err));
};
return this._oauthService.loadDiscoveryDocumentAndTryLogin();