Skip to content

Commit 77485f1

Browse files
committed
removed console
1 parent da56395 commit 77485f1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

app/src/components/left/RoomsContainer.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,11 @@ const RoomsContainer = () => {
110110

111111
socket.on('wrong password', () => {
112112
setIsPasswordAttemptIncorrect(false);
113-
console.log('WRONG PASSWORD in client');
114113
});
115114

116115
socket.on('correct password', () => {
117116
setIsPasswordAttemptIncorrect(true);
118117
addNewUserToCollabRoom();
119-
console.log('correct in client');
120118
});
121119

122120
socket.on('user created a new room', () => {
@@ -125,7 +123,6 @@ const RoomsContainer = () => {
125123

126124
socket.on('room is already taken', () => {
127125
setIsCollabRoomTaken(true);
128-
console.log('room is already taken');
129126
});
130127
//If you are the host: send current state to server when a new user joins
131128
socket.on('requesting state from host', (callback) => {

0 commit comments

Comments
 (0)