fix: BASE_URL is not defined - use BASE instead
All checks were successful
Deploy Development / deploy (push) Successful in 55s
Build Test / pytest-backend (push) Successful in 4s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 17s

Error: ReferenceError: BASE_URL is not defined
Fix: Change BASE_URL to BASE in executeUnifiedPromptStream (line 425)
This commit is contained in:
Lars 2026-04-13 15:21:36 +02:00
parent b1d596e0ab
commit b39ba45749

View File

@ -422,7 +422,7 @@ export const api = {
// Return a Promise that resolves with final result // Return a Promise that resolves with final result
return new Promise((resolve, reject) => { 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) const eventSource = new EventSource(url)