From 8109c65f8d43052a91e426b01a8f7d2bcf1e15eb Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Tue, 5 Jan 2016 10:11:10 -0800 Subject: [PATCH] Remove debug statement in appActions use arrow func --- common/app/flux/Actions.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/common/app/flux/Actions.js b/common/app/flux/Actions.js index da2318f56d..cc3a3dfe00 100644 --- a/common/app/flux/Actions.js +++ b/common/app/flux/Actions.js @@ -1,7 +1,5 @@ import { Actions } from 'thundercats'; -import debugFactory from 'debug'; -const debug = debugFactory('freecc:app:actions'); export default Actions({ shouldBindMethods: true, @@ -16,15 +14,14 @@ export default Actions({ return null; } - debug('fetching user data'); return this.readService$('user', null, null) - .map(function({ + .map(({ username, picture, progressTimestamps = [], isFrontEndCert, isFullStackCert - }) { + }) => { return { username, picture,