Remove stray console.log

This commit is contained in:
Jordan Eldredge 2017-06-06 06:58:47 -07:00
parent 3fec466b29
commit bb3ed6c6c3

View file

@ -208,7 +208,6 @@ export function setPreamp(value) {
export function toggleEq() {
return (dispatch, getState) => {
console.log("ho");
const type = getState().equalizer.on ? SET_EQ_OFF : SET_EQ_ON;
dispatch({ type });
};