From a225648b57ab206da0bca2ac90e3d82d846a4ee8 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Fri, 15 Apr 2016 14:00:17 -0700 Subject: [PATCH] Fix brownie points not showing on react pages --- common/app/redux/fetch-user-saga.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/app/redux/fetch-user-saga.js b/common/app/redux/fetch-user-saga.js index 4f01aea99c7..83b1fdf0ba5 100644 --- a/common/app/redux/fetch-user-saga.js +++ b/common/app/redux/fetch-user-saga.js @@ -11,7 +11,7 @@ export default ({ services }) => ({ dispatch }) => next => { .map(({ username, picture, - progressTimestamps = [], + points, isFrontEndCert, isBackEndCert, isFullStackCert @@ -21,7 +21,7 @@ export default ({ services }) => ({ dispatch }) => next => { payload: { username, picture, - points: progressTimestamps.length, + points, isFrontEndCert, isBackEndCert, isFullStackCert,