From 414219965d0cc46cfac8054f07bc79723fa30b2e Mon Sep 17 00:00:00 2001 From: jnguyen0220 <49132940+jnguyen0220@users.noreply.github.com> Date: Thu, 4 Apr 2019 00:24:31 -0500 Subject: [PATCH] fix: adding f to the featureImage source (#35758) - [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md). - [x] My pull request has a descriptive title (not a vague title like `Update index.md`) - [x] My pull request targets the `master` branch of freeCodeCamp. - [x] None of my changes are plagiarized from another source without proper attribution. - [x] All the files I changed are in the same world language (for example: only English changes, or only Chinese changes, etc.) - [x] My changes do not use shortened URLs or affiliate links. Closes #35749 --- client/utils/gatsby/guidePageCreator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/utils/gatsby/guidePageCreator.js b/client/utils/gatsby/guidePageCreator.js index 85a21a14b2..038d1a67ae 100644 --- a/client/utils/gatsby/guidePageCreator.js +++ b/client/utils/gatsby/guidePageCreator.js @@ -24,7 +24,7 @@ exports.createGuideArticlePages = createPage => ({ meta.featureImage = featureImage ? featureImage.properties.src : 'https://s3.amazonaws.com/freecodecamp' + - '/reecodecamp-square-logo-large.jpg'; + '/freecodecamp-square-logo-large.jpg'; const description = head(select(htmlAst, 'element[tagName=p]')); meta.description = description ? description.children[0].value : '';