From a906b8f411418f1f47554361a5e8c5926fb9a20e Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Wed, 7 Oct 2015 01:14:33 -0700 Subject: [PATCH] Fix firstChallenge var should point to new first challenge --- server/boot/challenge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/boot/challenge.js b/server/boot/challenge.js index c8da8de013..a1a748b402 100644 --- a/server/boot/challenge.js +++ b/server/boot/challenge.js @@ -20,7 +20,7 @@ const isDev = process.env.NODE_ENV !== 'production'; const isBeta = !!process.env.BETA; const debug = debugFactory('freecc:challenges'); const challengesRegex = /^(bonfire|waypoint|zipline|basejump)/i; -const firstChallenge = 'waypoint-say-hello-to-html-elements'; +const firstChallenge = 'waypoint-learn-how-free-code-camp-works'; const challengeView = { 0: 'coursewares/showHTML', 1: 'coursewares/showJS',