Remove debug statement in appActions

use arrow func
pull/6034/head
Berkeley Martinez 2016-01-05 10:11:10 -08:00
parent 844f43d271
commit 8109c65f8d
1 changed files with 2 additions and 5 deletions

View File

@ -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,