diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 22:19:11 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 22:19:11 +0200 |
| commit | cfe98e6eef5ca24b5c2656fcda8e3fac71d55a1d (patch) | |
| tree | fd8724292ce4309b96811160261fbcb4fa30fe06 /app/client/queue | |
| parent | d38fd8419223560bc82f6153de80f889bbd75b01 (diff) | |
going over all this task stuff
Diffstat (limited to 'app/client/queue')
| -rw-r--r-- | app/client/queue/queue.reducer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/queue/queue.reducer.js b/app/client/queue/queue.reducer.js index 02d6943..05cd015 100644 --- a/app/client/queue/queue.reducer.js +++ b/app/client/queue/queue.reducer.js @@ -25,7 +25,7 @@ const queueReducer = (state = queueInitialState, action) => { queue: state.queue.concat([action.data]), } case types.task.index: - console.log(action.data) + console.log(action.data) return { ...state, tasks: action.data.reduce((a,b) => (a[b.id] = b, a), {}), |
