From 2e5cf9a9c0aaba102a3c3bc1c49f5e31fed0fa46 Mon Sep 17 00:00:00 2001 From: addison Date: Tue, 16 Nov 2021 12:46:06 -0500 Subject: [PATCH] [style] Fix lint complaints --- common/src/services/state.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/services/state.service.ts b/common/src/services/state.service.ts index 965b7c5d..7c5ae54a 100644 --- a/common/src/services/state.service.ts +++ b/common/src/services/state.service.ts @@ -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); }