mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
Fix warning when attempting a double login in the cli (#468)
* Replace call to `getEntityType` with a static string * Delete several unused `StateService` methods
This commit is contained in:
@@ -301,10 +301,9 @@ export class Program extends BaseProgram {
|
||||
async exitIfAuthed() {
|
||||
const authed = await this.stateService.getIsAuthenticated();
|
||||
if (authed) {
|
||||
const type = await this.stateService.getEntityType();
|
||||
const id = await this.stateService.getEntityId();
|
||||
this.processResponse(
|
||||
Response.error("You are already logged in as " + type + "." + id + "."),
|
||||
Response.error("You are already logged in as organization." + id + "."),
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user