Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/chat/components/ChatArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const ChatArea: React.FC<ChatAreaProps> = ({

// 2. 각 모드에 맞는 컨텐츠 렌더링
const renderContent = () => {
if (mode === 'existing') {
if (mode === 'existing' || mode === 'deploy') {
return ioLogs.length === 0 ? (
<EmptyState title="대화 기록이 없습니다">
<p>&quot;{workflow.name}&quot; 워크플로우의 이전 대화를 불러올 수 없습니다.</p>
Expand Down
2 changes: 1 addition & 1 deletion src/app/chat/components/ChatInterface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ChatInterface: React.FC<ChatInterfaceProps> = ({ mode, workflow, onBack, h
setLoading(false);
}
};
if (mode === 'existing' && workflow?.id && existingChatData?.interactionId) {
if (mode === 'existing' || mode === 'deploy' && workflow?.id && existingChatData?.interactionId) {
loadChatLogs();
}
}, [mode, existingChatData?.interactionId, workflow.id, workflow.name, existingChatData?.workflowName, existingChatData?.workflowId]);
Expand Down
24 changes: 0 additions & 24 deletions src/app/main/components/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,30 +204,6 @@ const Settings: React.FC = () => {
}
};

const renderOpenAIConfig = () => {
const config = configs.openai || {};
return (
<OpenAIConfig
config={config}
onConfigChange={handleConfigChange}
onTestConnection={handleTestConnection}
configData={configData}
/>
);
};

const renderVLLMConfig = () => {
const config = configs.vllm || {};
return (
<VLLMConfig
config={config}
onConfigChange={handleConfigChange}
onTestConnection={handleTestConnection}
configData={configData}
/>
);
};

const renderWorkflowConfig = () => {
return (
<WorkflowConfig
Expand Down