1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00: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;
} }
}); });