1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-26 13:13:29 +00:00

[style] Fix lint complaints

This commit is contained in:
addison
2021-11-16 12:46:06 -05:00
parent e7dce3e587
commit 2e5cf9a9c0

View File

@@ -1397,7 +1397,7 @@ export class StateService implements StateServiceAbstraction {
if (state?.accounts[userId ?? this.state.activeUserId] == null) {
return;
}
delete state.accounts[userId ?? this.state.activeUserId]
delete state.accounts[userId ?? this.state.activeUserId];
await this.storageService.save('state', state, { htmlStorageLocation: HtmlStorageLocation.Local });
}
@@ -1406,7 +1406,7 @@ export class StateService implements StateServiceAbstraction {
if (state?.accounts[userId ?? this.state.activeUserId] == null) {
return;
}
delete state.accounts[userId ?? this.state.activeUserId]
delete state.accounts[userId ?? this.state.activeUserId];
await this.storageService.save('state', state, { htmlStorageLocation: HtmlStorageLocation.Session });
}
@@ -1415,7 +1415,7 @@ export class StateService implements StateServiceAbstraction {
if (state?.accounts[userId ?? this.state.activeUserId] == null) {
return;
}
delete state.accounts[userId ?? this.state.activeUserId]
delete state.accounts[userId ?? this.state.activeUserId];
await this.secureStorageService.save('state', state);
}