diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-06 04:47:49 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-06 04:47:49 +0200 |
| commit | 0bdec1443955fb35551f706c4e453e47808c5cca (patch) | |
| tree | 7aeb26b0589cf3cf745ab228d267c7da5127bc0e /app/client/modules | |
| parent | 53fbc3243a6c40021981d21f57df905770a90027 (diff) | |
uploading spectrogram zip filessssss
Diffstat (limited to 'app/client/modules')
| -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 |
