Browse Source

Remove useless logging in socket reducer.

pull/1/head
Titouan Rigoudy 9 years ago
parent
commit
871b945ce5
1 changed files with 0 additions and 8 deletions
  1. +0
    -8
      src/reducers/socket.js

+ 0
- 8
src/reducers/socket.js View File

@ -34,14 +34,6 @@ export default (state = initialState, action) => {
} }
return state; return state;
case types.SOCKET_RECEIVE_MESSAGE:
console.log(`Socket received message: ${action.payload}`);
return state;
case types.SOCKET_SEND_MESSAGE:
console.log("Sending message");
return state;
default: default:
return state; return state;
} }


Loading…
Cancel
Save