Skip to content

Commit 84425d3

Browse files
authored
Update ChatRoom.tsx
1 parent 6642819 commit 84425d3

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)