aboutsummaryrefslogtreecommitdiff
path: root/packages/auditor-backoffice-ui
diff options
context:
space:
mode:
Diffstat (limited to 'packages/auditor-backoffice-ui')
-rw-r--r--packages/auditor-backoffice-ui/src/Application.tsx2
-rw-r--r--packages/auditor-backoffice-ui/src/context/backend.ts3
2 files changed, 3 insertions, 2 deletions
diff --git a/packages/auditor-backoffice-ui/src/Application.tsx b/packages/auditor-backoffice-ui/src/Application.tsx
index e832d3107..e8b6b0be3 100644
--- a/packages/auditor-backoffice-ui/src/Application.tsx
+++ b/packages/auditor-backoffice-ui/src/Application.tsx
@@ -138,7 +138,7 @@ function ApplicationStatusRoutes(): VNode {
);
}
- const SUPPORTED_VERSION = "5:0:1"
+ const SUPPORTED_VERSION = "18:0:1"
if (result.data && !LibtoolVersion.compare(
SUPPORTED_VERSION,
result.data.version,
diff --git a/packages/auditor-backoffice-ui/src/context/backend.ts b/packages/auditor-backoffice-ui/src/context/backend.ts
index 2dad11f6b..b13b92c42 100644
--- a/packages/auditor-backoffice-ui/src/context/backend.ts
+++ b/packages/auditor-backoffice-ui/src/context/backend.ts
@@ -42,7 +42,8 @@ const BackendContext = createContext<BackendContextType>({
function useBackendContextState(
defaultUrl?: string,
): BackendContextType {
- const [url] = useBackendURL(defaultUrl);
+const [url] = useBackendURL(defaultUrl);
+ //const url = "http://localhost:8081";
const [token, updateToken] = useBackendDefaultToken();
return {