From b1e5338c96a55fd671de4cc936151618b1c7d85d Mon Sep 17 00:00:00 2001 From: Dmytro Vovk Date: Mon, 12 Aug 2024 15:55:47 +0100 Subject: [PATCH] set backend url --- src/app/store/connectionSlice.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/store/connectionSlice.ts b/src/app/store/connectionSlice.ts index 5c737bc..96187a6 100644 --- a/src/app/store/connectionSlice.ts +++ b/src/app/store/connectionSlice.ts @@ -19,8 +19,8 @@ const initialState: ConnectionState = { isConnectedToInternet: true, isConnectedToNode: true, nodeConnectionType: NodeConnectionType.Unknown, - backendAddress: "http://localhost:8080" - //backendAddress: window.location.origin + //backendAddress: "http://localhost:8080" + backendAddress: window.location.origin }; export const connectionSlice = createSlice({