diff --git a/src/behaviours/update-app/__snapshots__/installing-update-using-tray.test.ts.snap b/src/behaviours/update-app/__snapshots__/installing-update-using-tray.test.ts.snap index 0afca9055a..be68096f18 100644 --- a/src/behaviours/update-app/__snapshots__/installing-update-using-tray.test.ts.snap +++ b/src/behaviours/update-app/__snapshots__/installing-update-using-tray.test.ts.snap @@ -399,6 +399,8 @@ exports[`installing update using tray given no update is already downloaded, and

Version some-version of Lens IDE is available and ready to be installed. Would you like to update now? + +Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.

{ id: "install-update", title: "Update Available", question: - "Version some-version of Lens IDE is available and ready to be installed. Would you like to update now?", + "Version some-version of Lens IDE is available and ready to be installed. Would you like to update now?\n\n" + + "Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.", }); }); diff --git a/src/main/update-app/check-for-updates/check-for-updates.injectable.ts b/src/main/update-app/check-for-updates/check-for-updates.injectable.ts index 404e5aff72..d94a2af353 100644 --- a/src/main/update-app/check-for-updates/check-for-updates.injectable.ts +++ b/src/main/update-app/check-for-updates/check-for-updates.injectable.ts @@ -79,7 +79,9 @@ const checkForUpdatesInjectable = getInjectable({ const userWantsToInstallUpdate = await askBoolean({ id: "install-update", title: "Update Available", - question: `Version ${version} of Lens IDE is available and ready to be installed. Would you like to update now?`, + + question: `Version ${version} of Lens IDE is available and ready to be installed. Would you like to update now?\n\n` + + `Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.`, }); if (userWantsToInstallUpdate) {