From b51c842d1875cf0de3b31b5d32310c3bd4efcc32 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 8 May 2018 15:37:56 -0400 Subject: [PATCH] lint fix --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index f75f0591..06f55759 100644 --- a/src/main.ts +++ b/src/main.ts @@ -61,7 +61,7 @@ export class Main { }, () => { this.messagingService.send('doneCheckingForUpdate'); }); - this.trayMain = new TrayMain(this.windowMain, this.i18nService, this.storageService, ); + this.trayMain = new TrayMain(this.windowMain, this.i18nService, this.storageService); this.messagingMain = new MessagingMain(this.windowMain, this.menuMain, this.updaterMain, this.trayMain); this.messagingService = new ElectronMainMessagingService(this.windowMain, (message) => { this.messagingMain.onMessage(message);