We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6642819 + 84425d3 commit fcdc6e5Copy full SHA for fcdc6e5
src/pages/chat/ChatRoom.tsx
@@ -28,7 +28,8 @@ interface ChatMessage {
28
// }
29
30
export default function ChatRoom({}: ChatRoomProps) {
31
- const [chatRoomId, setChatRoomId] = useState<number | null>(7);
+ // const [chatRoomId, setChatRoomId] = useState<number | null>(7);
32
+ const chatRoomId = 7;
33
// const [myUserData, setMyUserData] = useState<ChatUser | null>(null);
34
35
const [stompClient, setStompClient] = useState<Client | null>(null);
0 commit comments