lint fixes
This commit is contained in:
parent
e49e2c8ca7
commit
70b4f97f2c
|
@ -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;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue