diff --git a/common/app/redux/load-current-challenge-saga.js b/common/app/redux/load-current-challenge-saga.js index 6068f4d646..2905516db9 100644 --- a/common/app/redux/load-current-challenge-saga.js +++ b/common/app/redux/load-current-challenge-saga.js @@ -26,7 +26,8 @@ export function updateMyCurrentChallengeSaga(actions, getState) { .filter(() => { const { app: { user: username } } = getState(); return !!username; - }); + }) + .distinctUntilChanged(); const optimistic = updateChallenge$.map(id => { const { app: { user: username } } = getState(); return updateMyCurrentChallenge(username, id);