Skip to content

Commit 956c084

Browse files
committed
[Feat] 사이드바 설정 채널에 목록 구성 및 기능 개발
1 parent a595941 commit 956c084

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/app/pages/ChatPage.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Hash, Users, GitPullRequest, Home, CheckSquare, Settings, ChevronDown, ChevronRight, GitBranch, Code2, Database, BookOpen, Maximize2, Minimize2, UserPlus, Plus, Pencil, Trash2, Check, X, type LucideIcon } from "lucide-react";
1+
import { Hash, Users, GitPullRequest, Home, CheckSquare, ChevronDown, ChevronRight, GitBranch, Code2, Database, BookOpen, Maximize2, Minimize2, UserPlus, Plus, Pencil, Trash2, Check, X, type LucideIcon } from "lucide-react";
22
import { ChatPanel } from "../components/ChatPanel";
33
import { PRReviewPanel } from "../components/PRReviewPanel";
44
import { ThreadPanel } from "../components/ThreadPanel";
@@ -236,9 +236,6 @@ const initialMessages: Record<string, any[]> = {
236236
{ id: 1, user: '김재준', text: '팀 미팅 금요일 오후 3시로 변경되었습니다.', time: '오늘 09:00' },
237237
{ id: 2, user: '김진필', text: '다음 주 휴가 예정입니다.', time: '오늘 10:00' }
238238
],
239-
'settings': [
240-
{ id: 1, user: '시스템', text: '설정 페이지입니다.', time: '오늘 09:00', type: 'system' as const }
241-
]
242239
};
243240

244241
const initialThreadReplies: Record<number, any[]> = {
@@ -1026,7 +1023,6 @@ export function ChatPage() {
10261023
<div className="mb-2" style={{ borderTop: '1px solid rgba(32, 227, 255, 0.14)' }}></div>
10271024

10281025
{renderSidebarChannel({ id: 'team', label: '팀', icon: Users })}
1029-
{renderSidebarChannel({ id: 'settings', label: '설정', icon: Settings })}
10301026
</div>
10311027
</div>
10321028
) : (

0 commit comments

Comments
 (0)