diff --git a/docker-compose.yaml b/docker-compose.yaml index 7008b53d..290345ab 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,15 +1,6 @@ version: "3.9" services: - frontend: - build: ./frontend - environment: - - VITE_API_HOST=http://localhost:7091 - - VITE_API_STREAMING=$VITE_API_STREAMING - ports: - - "5173:5173" - depends_on: - - backend backend: build: ./application diff --git a/frontend/src/Setting.tsx b/frontend/src/Setting.tsx index 65756bea..c1a2a153 100644 --- a/frontend/src/Setting.tsx +++ b/frontend/src/Setting.tsx @@ -10,7 +10,6 @@ import { selectSourceDocs, } from './preferences/preferenceSlice'; import { Doc } from './preferences/preferenceApi'; - type PromptProps = { prompts: { name: string; id: string; type: string }[]; selectedPrompt: { name: string; id: string; type: string }; @@ -97,7 +96,7 @@ const Setting: React.FC = () => { }; return ( -
Settings