From c0f6af7a0547fe716f7778ada63fbf6c5ae3a0f6 Mon Sep 17 00:00:00 2001 From: John Costa Date: Thu, 8 May 2025 18:04:47 +0100 Subject: [PATCH] hack: setting prod url to build macos app --- 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 8d60770..5b9066a 100644 --- a/frontend/src/network/index.ts +++ b/frontend/src/network/index.ts @@ -20,7 +20,7 @@ type BaseRequestParams = Partial<{ method: "GET" | "POST"; }>; -export const base = "http://192.168.1.199:3040"; +export const base = "https://haystack.johncosta.tech"; const getBaseRequest = ({ path, body, method }: BaseRequestParams): Request => { return new Request(`${base}/${path}`, {