From ed2f9f747f5572e90f52b996e07a6ca17e6550b6 Mon Sep 17 00:00:00 2001 From: Huell Date: Tue, 23 Jun 2026 19:44:43 +0200 Subject: [PATCH] Hardcode API URL --- frontend/webEditor/src/dfdApiClient/dfdApiClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/webEditor/src/dfdApiClient/dfdApiClient.ts b/frontend/webEditor/src/dfdApiClient/dfdApiClient.ts index 9ac42da7..067ded3b 100644 --- a/frontend/webEditor/src/dfdApiClient/dfdApiClient.ts +++ b/frontend/webEditor/src/dfdApiClient/dfdApiClient.ts @@ -23,7 +23,7 @@ export class DfdApiClient { } public sendMessage(message: string, action: string, name?: string): Promise { - const apiUrl = `/api/${action}`; + const apiUrl = `https://websocket.dataflowanalysis.org/api/${action}`; const fileName = name ?? this.fileName.getName(); return fetch(apiUrl, {