diff options
Diffstat (limited to 'app/client/modules/pix2wav')
| -rw-r--r-- | app/client/modules/pix2wav/pix2wav.reducer.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/client/modules/pix2wav/pix2wav.reducer.js b/app/client/modules/pix2wav/pix2wav.reducer.js index 80ee4f7..c1ae51c 100644 --- a/app/client/modules/pix2wav/pix2wav.reducer.js +++ b/app/client/modules/pix2wav/pix2wav.reducer.js @@ -15,7 +15,6 @@ const pix2wavReducer = (state = pix2wavInitialState, action) => { if (action.data && action.data.module === 'pix2wav') { state = datasetReducer(state, action) } - console.log(action.type) switch (action.type) { case types.wav2pix.loaded_buffer: @@ -24,7 +23,6 @@ const pix2wavReducer = (state = pix2wavInitialState, action) => { status: 'Loaded buffer', } case types.wav2pix.draw_progress: - console.log(action) return { ...state, status: 'Rendering frame ' + action.count, @@ -42,7 +40,7 @@ const pix2wavReducer = (state = pix2wavInitialState, action) => { case types.wav2pix.uploading: return { ...state, - status: 'Uploading zip file (' + util.hush_size(action.size) + ')', + status: 'Uploading zip file', } default: return state |
