Fix for upcoming electron update

Fixes #1715
This commit is contained in:
2024-02-21 18:17:51 -05:00
parent 7c5b4ab3ea
commit 7492e7eb11
-1
View File
@@ -3,7 +3,6 @@ import {ipcRenderer as IPC, shell} from "electron";
export const ipcRenderer = {
send: IPC.send.bind(IPC),
sendToHost: IPC.sendToHost.bind(IPC),
sendTo: IPC.sendTo.bind(IPC),
sendSync: IPC.sendSync.bind(IPC),
invoke: IPC.invoke.bind(IPC),
on: IPC.on.bind(IPC),