From 8ddc551cc83a81ade3206e6e04c516ff15215993 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 10 Mar 2023 01:25:22 -0300 Subject: remove webui from login url, ad qr for template, fix navbar size, --- .../merchant-backoffice-ui/src/Application.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'packages/merchant-backoffice-ui/src/Application.tsx') diff --git a/packages/merchant-backoffice-ui/src/Application.tsx b/packages/merchant-backoffice-ui/src/Application.tsx index 84536396d..ed1fc69f3 100644 --- a/packages/merchant-backoffice-ui/src/Application.tsx +++ b/packages/merchant-backoffice-ui/src/Application.tsx @@ -23,7 +23,7 @@ import { TranslationProvider, useTranslationContext, } from "@gnu-taler/web-util/lib/index.browser"; -import { h, VNode } from "preact"; +import { Fragment, h, VNode } from "preact"; import { route } from "preact-router"; import { useMemo } from "preact/hooks"; import { ApplicationReadyRoutes } from "./ApplicationReadyRoutes.js"; @@ -70,24 +70,24 @@ function ApplicationStatusRoutes(): VNode { if (!triedToLog) { return ( -
+ -
+ ); } if (result.clientError && result.isUnauthorized) return ( -
+ -
+ ); if (result.clientError && result.isNotfound) return ( -
+ -
+ ); if (result.serverError) return ( -
+ -
+ ); if (result.loading) return ; if (!result.ok) return ( -
+ -
+ ); return ( -- cgit v1.2.3