summaryrefslogtreecommitdiff
path: root/app/client/queue/queue.reducer.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/client/queue/queue.reducer.js')
-rw-r--r--app/client/queue/queue.reducer.js2
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), {}),