1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-26 10:36:19 +02:00

fix lint issue

This commit is contained in:
Kyle Spearrin 2018-03-09 13:04:30 -05:00
parent 74db4cc8b4
commit ffb87742f8

View File

@ -91,7 +91,7 @@ const folderService = new FolderService(cryptoService, userService,
() => i18nService.t('noneFolder'), apiService, storageService, i18nService);
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, () => { });
cryptoService, platformUtilsService, storageService, messagingService, () => { /* do nothing */ });
const syncService = new SyncService(userService, apiService, settingsService,
folderService, cipherService, cryptoService, collectionService,
storageService, messagingService, (expired: boolean) => messagingService.send('logout', { expired: expired }));