Skip to content

Commit fcdc6e5

Browse files
authored
Merge pull request #202 from prgrms-web-devcourse-final-project/denshou-patch-1
[fix] chatRoom 빌드 수정
2 parents 6642819 + 84425d3 commit fcdc6e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/chat/ChatRoom.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ interface ChatMessage {
2828
// }
2929

3030
export default function ChatRoom({}: ChatRoomProps) {
31-
const [chatRoomId, setChatRoomId] = useState<number | null>(7);
31+
// const [chatRoomId, setChatRoomId] = useState<number | null>(7);
32+
const chatRoomId = 7;
3233
// const [myUserData, setMyUserData] = useState<ChatUser | null>(null);
3334

3435
const [stompClient, setStompClient] = useState<Client | null>(null);

0 commit comments

Comments
 (0)