From b39ba457496c881ad371f972160a6a059024a175 Mon Sep 17 00:00:00 2001 From: Lars Date: Mon, 13 Apr 2026 15:21:36 +0200 Subject: [PATCH] fix: BASE_URL is not defined - use BASE instead Error: ReferenceError: BASE_URL is not defined Fix: Change BASE_URL to BASE in executeUnifiedPromptStream (line 425) --- frontend/src/utils/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/api.js b/frontend/src/utils/api.js index b944648..287a975 100644 --- a/frontend/src/utils/api.js +++ b/frontend/src/utils/api.js @@ -422,7 +422,7 @@ export const api = { // Return a Promise that resolves with final result return new Promise((resolve, reject) => { - const url = `${BASE_URL}/prompts/execute-stream?${params}` + const url = `${BASE}/prompts/execute-stream?${params}` const eventSource = new EventSource(url)