diff options
author | Nic Eigel <nic@eigel.ch> | 2024-01-18 00:18:06 +0100 |
---|---|---|
committer | Nic Eigel <nic@eigel.ch> | 2024-01-18 00:25:08 +0100 |
commit | 011eadd2d37e00a331a668d1efe55940f37ac95f (patch) | |
tree | 43df46388c76441fb2e745158e19bfa8fcacb37a /packages/auditor-backoffice-ui | |
parent | 3f417b4c4f251b7dfad7e27308fdb966ef040c1c (diff) |
cleaned repo of auditor deps
Diffstat (limited to 'packages/auditor-backoffice-ui')
-rw-r--r-- | packages/auditor-backoffice-ui/src/Application.tsx | 2 | ||||
-rw-r--r-- | packages/auditor-backoffice-ui/src/context/backend.ts | 3 |
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 { |