diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index f61555c349..096824119e 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jun 26 15:57:52 UTC 2024 - Imobach Gonzalez Sosa + +- Display the installation progress when connecting in the middle + of the process (gh#openSUSE/agama#1394). + ------------------------------------------------------------------- Wed Jun 26 14:17:30 UTC 2024 - David Diaz diff --git a/web/src/components/core/InstallationProgress.jsx b/web/src/components/core/InstallationProgress.jsx index bf5f3f08dc..d3c43d2555 100644 --- a/web/src/components/core/InstallationProgress.jsx +++ b/web/src/components/core/InstallationProgress.jsx @@ -20,24 +20,14 @@ */ import React from "react"; -import { useProduct } from "~/context/product"; -import { sprintf } from "sprintf-js"; import { _ } from "~/i18n"; import ProgressReport from "./ProgressReport"; import SimpleLayout from "~/SimpleLayout"; function InstallationProgress() { - const { selectedProduct } = useProduct(); - - if (!selectedProduct) { - return; - } - - // TRANSLATORS: %s is replaced by a product name (e.g., openSUSE Tumbleweed) - const title = sprintf(_("Installing %s, please wait ..."), selectedProduct.name); return ( - + ); }