From 217eb4dbe3923a4070e27106f5ab21a44cf24bab Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Tue, 27 Jun 2023 15:32:10 -0400 Subject: [PATCH] desktop: fix localhost port --- desktop/src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/app.tsx b/desktop/src/app.tsx index 1f1380bd..5a48b7ce 100644 --- a/desktop/src/app.tsx +++ b/desktop/src/app.tsx @@ -3,7 +3,7 @@ import path from 'path' import os from 'os' import { dialog, getCurrentWindow } from '@electron/remote' -const API_URL = 'http://127.0.0.1:5001' +const API_URL = 'http://127.0.0.1:7734' type Message = { sender: 'bot' | 'human'