From 0deaf8c0a66da3490e331b57abfc9ca39c3717b5 Mon Sep 17 00:00:00 2001 From: Frank Noirot Date: Thu, 26 Sep 2024 10:46:02 -0400 Subject: [PATCH] Oops forgot to rename where I used a type --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index c19e8e23a..136ec115f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -58,7 +58,7 @@ if (isDesktop()) { // List for update download progress to begin // to show a loading toast. // TODO: Make use of the progress value in future. Currently this fires only once. - window.electron.onUpdateDownloadProgress(({ version }) => { + window.electron.onUpdateDownloadStart(({ version }) => { const message = `Downloading update (${version})...` console.log(message) toast.loading(message, { id: AUTO_UPDATER_TOAST_ID })