style: make linter happy

This commit is contained in:
Noah Gregory
2026-03-07 03:34:53 -05:00
parent 884cebe2ae
commit 04efaacea9

View File

@@ -10,8 +10,8 @@ process.on('unhandledRejection', (reason) => {
process.exit(1);
});
app.on('browser-window-created', (ev, window) => {
window.webContents.once('did-frame-navigate', (ev, url) => {
app.on('browser-window-created', (_, window) => {
window.webContents.once('did-frame-navigate', (__, ___) => {
process.exit(0);
});
});
@@ -19,4 +19,4 @@ app.on('browser-window-created', (ev, window) => {
app.whenReady().then(() => {
const win = new BrowserWindow({ show: false });
win.loadFile('index.html');
});
});