From eb522cd6453a0a3d97a6916137b038566657db10 Mon Sep 17 00:00:00 2001 From: Zerebos Date: Wed, 21 Feb 2024 18:17:51 -0500 Subject: [PATCH] Fix for upcoming electron update Fixes #1715 --- preload/src/api/electron.js | 1 - 1 file changed, 1 deletion(-) diff --git a/preload/src/api/electron.js b/preload/src/api/electron.js index 246535f9..f8c91558 100644 --- a/preload/src/api/electron.js +++ b/preload/src/api/electron.js @@ -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),