From b40b32c705e91cd7143e1d3bc1ced9275655a9b4 Mon Sep 17 00:00:00 2001 From: "alex.hill@gmail.com" Date: Tue, 3 Sep 2024 16:02:32 +0100 Subject: [PATCH] fix app url --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 3ac4725..8633e73 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -11,7 +11,7 @@ const root = ReactDOM.createRoot( const getApiUrl = () => { if (process.env.NODE_ENV === "development") { - return "http://localhost:8888/"; + return "http://localhost:8888"; } return `https://${window.location.host}/api/`; };