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}`, {