From 3594baceb5e8cc01f56095f887b7ddd55ca4f415 Mon Sep 17 00:00:00 2001 From: John Costa Date: Sun, 5 Oct 2025 20:47:28 +0100 Subject: [PATCH] lets pretend it is working --- frontend/src/network/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/network/index.ts b/frontend/src/network/index.ts index a0943e4..f0dadae 100644 --- a/frontend/src/network/index.ts +++ b/frontend/src/network/index.ts @@ -23,8 +23,8 @@ type BaseRequestParams = Partial<{ method: "GET" | "POST" | "DELETE"; }>; -// export const base = "https://haystack.johncosta.tech"; -export const base = "http://192.168.1.199:3040"; +export const base = "https://haystack.johncosta.tech"; +// export const base = "http://192.168.1.199:3040"; const getBaseRequest = ({ path, body, method }: BaseRequestParams): Request => { return new Request(`${base}/${path}`, {