From 2e376b03fc6ecfffead22707e532b68584f737ec Mon Sep 17 00:00:00 2001 From: MathieuG-P <40181755+Zagrios@users.noreply.github.com> Date: Mon, 11 Sep 2023 21:53:58 +0200 Subject: [PATCH] [chore] fix sonarcloud bug --- src/main/services/configuration.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/services/configuration.service.ts b/src/main/services/configuration.service.ts index 29b22c6b..bc9713b0 100644 --- a/src/main/services/configuration.service.ts +++ b/src/main/services/configuration.service.ts @@ -19,7 +19,7 @@ export class ConfigurationService { this.locations = InstallationLocationService.getInstance(); this.initStore(); - this.locations.onInstallLocationUpdate(() => this.initStore()); + this.locations.onInstallLocationUpdate(() => { this.initStore() }); } private async initStore() {