auth double click got dropped from the revert I think

This commit is contained in:
Blair Vanderlugt 2021-06-12 10:57:20 -07:00
parent 81861f5740
commit ad71df5c52

View File

@ -62,7 +62,6 @@ export class AuthService {
this.loggingService.sendErrorLevelMessage('failed to get with auth token.',
this,
{ error: "" });
return false;
}
return true;
@ -95,7 +94,7 @@ export class AuthService {
async login(): Promise<boolean> {
if (this.getSessionToken()) {
sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));
} else {
}
const o = await this.getChallenge();
const r = await signChallenge(
@ -128,7 +127,6 @@ export class AuthService {
}
return false
}
}
loginView(): void {
document.getElementById('one').style.display = 'none';