From ab2b9881fe051d82d7df545cce0bc4ef17dee08b Mon Sep 17 00:00:00 2001 From: addison Date: Tue, 9 Nov 2021 14:31:23 -0500 Subject: [PATCH] [style] Fix lint complaints --- common/src/services/state.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/services/state.service.ts b/common/src/services/state.service.ts index c4985d79..14872d1a 100644 --- a/common/src/services/state.service.ts +++ b/common/src/services/state.service.ts @@ -519,11 +519,11 @@ export class StateService implements StateServiceAbstraction { async getConvertAccountToKeyConnector(options?: StorageOptions): Promise { return (await this.getAccount(this.reconcileOptions(options, this.defaultOnDiskOptions)))?.convertAccountToKeyConnector; - }; + } async getUsesKeyConnector(options?: StorageOptions): Promise { return (await this.getAccount(this.reconcileOptions(options, this.defaultInMemoryOptions)))?.usesKeyConnector; - }; + } async setAccessToken(value: string, options?: StorageOptions): Promise { const account = await this.getAccount(this.reconcileOptions(options, this.defaultInMemoryOptions));