From 49729e8ea981f8eddef34e5e6fe64f42bc022bdf Mon Sep 17 00:00:00 2001 From: beckerinj Date: Sun, 7 Aug 2022 22:13:28 -0400 Subject: [PATCH] back to localhost --- frontend/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index c65d21878..accc374ac 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -15,7 +15,7 @@ import { ThemeProvider } from "./state/ThemeProvider"; export const URL = import.meta.env.MODE === "production" ? location.origin - : "http://52.193.1.140:9000"; + : "http://localhost:9000"; export const WS_URL = URL.replace("https", "wss").replace("http", "ws") + "/ws";