Oops forgot to rename where I used a type

This commit is contained in:
Frank Noirot
2024-09-26 10:46:02 -04:00
parent 540ce2c8e6
commit 0deaf8c0a6

View File

@ -58,7 +58,7 @@ if (isDesktop()) {
// List for update download progress to begin // List for update download progress to begin
// to show a loading toast. // to show a loading toast.
// TODO: Make use of the progress value in future. Currently this fires only once. // 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})...` const message = `Downloading update (${version})...`
console.log(message) console.log(message)
toast.loading(message, { id: AUTO_UPDATER_TOAST_ID }) toast.loading(message, { id: AUTO_UPDATER_TOAST_ID })