From aca9dcf643c49bc970a404d519ff3260d6086753 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Wed, 30 Jul 2025 09:52:53 +0800 Subject: [PATCH] fix:try to fix the docker build of front-end (#487) --- web/src/core/store/settings-store.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/core/store/settings-store.ts b/web/src/core/store/settings-store.ts index d3d2fe8..fa3f882 100644 --- a/web/src/core/store/settings-store.ts +++ b/web/src/core/store/settings-store.ts @@ -101,15 +101,15 @@ export const getChatStreamSettings = () => { name: cur.name, transport, env, - command: cur.command, - args: cur.args, + command: (cur as any).command, + args: (cur as any).args, }; } else { server = { name: cur.name, transport, env, - url: cur.url, + url: (cur as any).url, }; } return {