From 1637b969e51e5edc8b248c88cfe04fc1c8e8a829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Jim=C3=A9nez?= Date: Mon, 8 Jan 2024 11:11:20 +0100 Subject: [PATCH] chore: error message appears every second (fix for unreleased change) (#595) --- app/renderer/src/contexts/connectors/ElectronConnector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/renderer/src/contexts/connectors/ElectronConnector.tsx b/app/renderer/src/contexts/connectors/ElectronConnector.tsx index 42e18610..846f8460 100644 --- a/app/renderer/src/contexts/connectors/ElectronConnector.tsx +++ b/app/renderer/src/contexts/connectors/ElectronConnector.tsx @@ -107,7 +107,7 @@ export const ElectronConnectorProvider: React.FC = ({ children }) => { }, [electron, settings.openAtLogin]); useTrayIconUpdates((dataUrl) => { - electron.send(TRAY_ICON_UPDATE, { dataUrl }); + electron.send(TRAY_ICON_UPDATE, dataUrl); }); return (