From 58e410b16c2aae7b365e52bf0cbb2ce015615633 Mon Sep 17 00:00:00 2001 From: Alexander Busse <102560752+AlexanderBuzz@users.noreply.github.com> Date: Mon, 18 Sep 2023 20:12:26 +0200 Subject: [PATCH] Update content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md Co-authored-by: Rome Reginelli --- .../build-apps/build-a-desktop-wallet-in-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md index d32eae59ed..70ca2a505e 100644 --- a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md +++ b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md @@ -588,7 +588,7 @@ contextBridge.exposeInMainWorld('electronAPI', { }) ``` -Here we can observe a notable difference to the previous step. Until now we just used `ipcRenderer` to pick up on events from the main logic, now we are using it bidirectional to send events from the frontend to the main logic: +Here is a notable difference from the previous step: previously we only used `ipcRenderer` to send events from the main logic to the frontend, but now we use it bidirectionally, also sending events from the frontend to the main logic: ```javascript onEnterAccountAddress: (address) => {