Skip to content

Commit d02eeae

Browse files
authored
Merge pull request #3529 from topcoder-platform/issue_3527
Fix Issue #3527 : Blog showing 404 Error
2 parents 648529b + 92e031f commit d02eeae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

__tests__/shared/components/Header/__snapshots__/index.jsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ exports[`Default render 1`] = `
108108
"title": "Events",
109109
},
110110
Object {
111-
"href": "/blog",
111+
"href": "https://www.topcoder-dev.com/blog",
112112
"title": "Blog",
113113
},
114114
Object {

config/default.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module.exports = {
109109
ARENA: 'https://arena.topcoder-dev.com',
110110
AUTH: 'http://accounts.topcoder-dev.com',
111111
BASE: 'https://www.topcoder-dev.com',
112-
BLOG: 'https://www.topcoder.com/blog',
112+
BLOG: 'https://www.topcoder-dev.com/blog',
113113
BLOG_FEED: 'https://www.topcoder.com/blog/feed/',
114114
COMMUNITY: 'https://community.topcoder-dev.com',
115115
FORUMS: 'https://apps.topcoder-dev.com/forums',
@@ -325,7 +325,7 @@ module.exports = {
325325
},
326326
{
327327
title: 'Blog',
328-
href: '/blog',
328+
href: 'https://www.topcoder-dev.com/blog',
329329
},
330330
{
331331
title: 'Thrive',

config/production.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ module.exports = {
159159
},
160160
{
161161
title: 'Blog',
162-
href: '/blog',
162+
href: 'https://www.topcoder.com/blog',
163163
},
164164
{
165165
title: 'Thrive',

0 commit comments

Comments
 (0)