1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

lint fixes

This commit is contained in:
Kyle Spearrin 2018-02-11 01:21:01 -05:00
parent e49e2c8ca7
commit 70b4f97f2c

View File

@ -1,5 +1,13 @@
import { app, ipcMain } from 'electron'; import {
import { getPassword, setPassword, deletePassword } from 'keytar'; app,
ipcMain,
} from 'electron';
import {
deletePassword,
getPassword,
setPassword,
} from 'keytar';
import { WindowMain } from './window.main'; import { WindowMain } from './window.main';
@ -29,8 +37,7 @@ export class MessagingMain {
} }
event.returnValue = val; event.returnValue = val;
} } catch {
catch {
event.returnValue = null; event.returnValue = null;
} }
}); });