diff --git a/server/boot/challenge.js b/server/boot/challenge.js index f69b1101ba..a13940f794 100644 --- a/server/boot/challenge.js +++ b/server/boot/challenge.js @@ -208,10 +208,12 @@ module.exports = function(app) { debug('next challengeName', nextChallengeName); if (!nextChallengeName || nextChallengeName === firstChallenge) { req.flash('errors', { - msg: 'It looks like you have finished all of our challenges.' + - ' Great job! Now on to helping nonprofits!' + msg: 'Once you have completed all of our challenges, you should '+ + 'join our Half Way Club and start getting '+ + 'ready for our nonprofit projects.' }); - return res.redirect('/challenges/' + firstChallenge); + return res.redirect('/map'); } res.redirect('/challenges/' + nextChallengeName); }