Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.

Commit 295843e

Browse files
authored
Merge pull request #275 from X2bee/main
fix: Simplify rendering of current chat interface in XgenPageContent
2 parents f900829 + da0d752 commit 295843e

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

src/app/main/components/XgenPageContent.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,8 @@ const XgenPageContent: React.FC<XgenPageContentProps> = ({
138138
case 'new-chat':
139139
return <ChatContent onChatStarted={handleChatStarted} />;
140140
case 'current-chat':
141-
return (
142-
<ContentArea
143-
title="현재 채팅"
144-
description="현재 채팅을 이어나가 보세요."
145-
>
146-
<CurrentChatInterface />;
147-
</ContentArea>
141+
return (
142+
<CurrentChatInterface />
148143
);
149144
case 'chat-history':
150145
return (

0 commit comments

Comments
 (0)