From bb3ed6c6c33586a32a8d5381ae637adf50534898 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Tue, 6 Jun 2017 06:58:47 -0700 Subject: [PATCH] Remove stray console.log --- js/actionCreators.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/actionCreators.js b/js/actionCreators.js index f8e680a0..656ffe52 100644 --- a/js/actionCreators.js +++ b/js/actionCreators.js @@ -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 }); };