From 6324c26873255b6c32d19ad2d885b1c75e54ce4f Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Fri, 13 Jun 2025 16:53:02 -0700 Subject: [PATCH] fix updater download text (#2919) --- ui/desktop/src/utils/autoUpdater.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/utils/autoUpdater.ts b/ui/desktop/src/utils/autoUpdater.ts index 711e076d53..6753cc0e8f 100644 --- a/ui/desktop/src/utils/autoUpdater.ts +++ b/ui/desktop/src/utils/autoUpdater.ts @@ -205,7 +205,7 @@ export function registerUpdateIpcHandlers() { type: 'info', title: 'Update Downloaded', message: 'The update has been downloaded to your Downloads folder.', - detail: `Please extract ${path.basename(updatePath)} and move the Goose app to your Applications folder to complete the update.`, + detail: `Please extract the zip file and move the Goose app to your Applications folder to complete the update.`, buttons: ['Open Downloads', 'Cancel'], defaultId: 0, cancelId: 1,