1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-20 02:03:21 +00:00

Upgrade prettier (#409)

This commit is contained in:
Addison Beck
2024-01-27 15:56:40 -06:00
committed by GitHub
parent 5b7b68f1cb
commit 9c88e66a27
177 changed files with 1154 additions and 1093 deletions

View File

@@ -63,7 +63,7 @@ export class Main {
this.logService,
null,
true,
new StateFactory(GlobalState, Account)
new StateFactory(GlobalState, Account),
);
this.windowMain = new WindowMain(
@@ -73,7 +73,7 @@ export class Main {
800,
600,
(arg) => this.processDeepLink(arg),
null
null,
);
this.menuMain = new MenuMain(this);
@@ -90,7 +90,7 @@ export class Main {
() => {
this.messagingService.send("doneCheckingForUpdate");
},
"bitwardenDirectoryConnector"
"bitwardenDirectoryConnector",
);
this.trayMain = new TrayMain(this.windowMain, this.i18nService, this.stateService);
@@ -99,14 +99,14 @@ export class Main {
this.windowMain,
this.menuMain,
this.updaterMain,
this.trayMain
this.trayMain,
);
this.messagingService = new ElectronMainMessagingService(this.windowMain, (message) => {
this.messagingMain.onMessage(message);
});
this.credentialStorageListener = new DCCredentialStorageListener(
"Bitwarden Directory Connector"
"Bitwarden Directory Connector",
);
}
@@ -133,7 +133,7 @@ export class Main {
(e: any) => {
// eslint-disable-next-line
console.error(e);
}
},
);
}