storing cookies not working so whatever move on

This commit is contained in:
talksik
2022-03-17 20:16:43 -04:00
parent 34fe8e0c29
commit 444c116f1b
4 changed files with 2 additions and 19 deletions
-8
View File
@@ -48,14 +48,6 @@ app
console.log("initiating log in");
await handleLogin();
});
// IPC listener
ipcMain.on("electron-store-get", async (event, val) => {
event.returnValue = store.get(val);
});
ipcMain.on("electron-store-set", async (event, key, val) => {
store.set(key, val);
});
});
// Quit when all windows are closed, except on macOS. There, it's common