From 95d4349b00548feded9bf7dd687b18fb7c9258f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Thu, 3 Oct 2024 11:16:13 +0100 Subject: [PATCH 1/2] fix(web): wrap the application in a component --- web/src/context/root.jsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/web/src/context/root.jsx b/web/src/context/root.jsx index a3a231f099..e47d708b9f 100644 --- a/web/src/context/root.jsx +++ b/web/src/context/root.jsx @@ -22,8 +22,9 @@ // @ts-check -import React from "react"; +import React, { Suspense } from "react"; import { AuthProvider } from "./auth"; +import { Loading } from "~/components/layout"; /** * Combines all application providers. @@ -32,7 +33,11 @@ import { AuthProvider } from "./auth"; * @param {React.ReactNode} [props.children] - content to display within the provider. */ function RootProviders({ children }) { - return {children}; + return ( + }> + {children} + + ); } export { RootProviders }; From d00b304841f3bf548ca2cd5e78b44f0876192844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Thu, 3 Oct 2024 11:24:41 +0100 Subject: [PATCH 2/2] doc(web): update changes file --- web/package/agama-web-ui.changes | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index 515e683344..fab8f1b7cb 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 3 10:20:34 UTC 2024 - Imobach Gonzalez Sosa + +- Drop the old HTTPClient (gh#agama-project/agama#1639). + ------------------------------------------------------------------- Mon Sep 30 08:52:36 UTC 2024 - Imobach Gonzalez Sosa @@ -14,7 +19,7 @@ Fri Sep 27 13:00:05 UTC 2024 - Imobach Gonzalez Sosa - Properly translate the storage interface when switching the language of the UI (gh#agama-project/agama#1629). - + ------------------------------------------------------------------- Mon Sep 23 09:04:56 UTC 2024 - Knut Anderssen