login button was taking two clicks

This commit is contained in:
Blair Vanderlugt 2021-06-10 15:59:11 -07:00
parent 61bf336789
commit df395b7b61

View File

@ -95,7 +95,7 @@ export class AuthService {
async login(): Promise<boolean> {
if (AuthService.getSessionToken()) {
sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));
} else {
}
const o = await this.getChallenge();
const r = await signChallenge(
@ -127,7 +127,7 @@ export class AuthService {
return true
}
return false
}
}
loginView(): void {