From 667dd81e6a17dee459448af48b94b6560b4b4657 Mon Sep 17 00:00:00 2001 From: Paul Rail Date: Fri, 23 Mar 2018 06:21:02 -0400 Subject: [PATCH] fix(common): Added expected homeURL that was missing (#16922) * fix(common): Added expected homeURL that was missing added variable homeURL that is imported into file Timeline.jsx BREAKING CHANGE: none Closes #16836 * Changed the homeURL variable link Changed the homeURL variable link to be "https://freecodecamp.org" Instead of "https://www.freecodecamp.org/challenges/learn-how-freecodecamp-works" as per @Bouncey's requested change. --- common/utils/constantStrings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/utils/constantStrings.json b/common/utils/constantStrings.json index e220d9e868..25999f0d2c 100644 --- a/common/utils/constantStrings.json +++ b/common/utils/constantStrings.json @@ -4,5 +4,6 @@ "donateUrl": "https://www.freecodecamp.org/donate", "forumUrl": "https://forum.freecodecamp.org", "githubUrl": "https://github.com/freecodecamp/freecodecamp", - "RSA": "https://forum.freecodecamp.org/t/the-read-search-ask-methodology-for-getting-unstuck/137307" + "RSA": "https://forum.freecodecamp.org/t/the-read-search-ask-methodology-for-getting-unstuck/137307", + "homeURL": "https://freecodecamp.org" }