From e1e941c0ee097032a3ee08ae595b1444de89654e Mon Sep 17 00:00:00 2001 From: Adrian <107351903+6lr61@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:06:56 +0200 Subject: [PATCH] fix: open chat hardcoded to localhost --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index a8e5b7a..f5b3327 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,7 +5,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; function openChat() { window.open( - "http://localhost:5173/chat/index.html", + "/chat/index.html", undefined, "popup=yes,innerWidth=480,innerHeight=784" );