From dd4f508346d981a8ea0592ea1622ea8ae1facca9 Mon Sep 17 00:00:00 2001 From: John Costa Date: Sun, 5 Oct 2025 19:05:17 +0100 Subject: [PATCH] fix --- frontend/src/network/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/network/index.ts b/frontend/src/network/index.ts index d202d4a..29f327d 100644 --- a/frontend/src/network/index.ts +++ b/frontend/src/network/index.ts @@ -24,7 +24,7 @@ type BaseRequestParams = Partial<{ }>; // export const base = "https://haystack.johncosta.tech"; -export const base = "http://localhost:3040"; +export const base = "http://john-desktop:3040"; const getBaseRequest = ({ path, body, method }: BaseRequestParams): Request => { return new Request(`${base}/${path}`, {