Skip to content

Nav hotfix thrive link #4254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ workflows:
filters:
branches:
only:
- develop
- feature-contentful
# This is beta env for production soft releases
- "build-prod-beta":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ exports[`Default render 1`] = `
"separator": true,
},
Object {
"href": "https://community-app.topcoder-dev.com/thrive/tracks?track=Topcoder",
"href": "/thrive/tracks?track=Topcoder",
"title": "Help",
},
Object {
Expand Down
2 changes: 1 addition & 1 deletion config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ module.exports = {
{ separator: true },
{
title: 'Help',
href: 'https://community-app.topcoder-dev.com/thrive/tracks?track=Topcoder',
href: '/thrive/tracks?track=Topcoder',
},
{ separator: true },
{
Expand Down
2 changes: 1 addition & 1 deletion config/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ module.exports = {
{ separator: true },
{
title: 'Help',
href: 'https://www.topcoder.com/thrive/tracks?track=Topcoder',
href: '/thrive/tracks?track=Topcoder',
},
{ separator: true },
{
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Header = ({
}

useEffect(() => {
setPath(window.location.pathname);
setPath(window.location.pathname + window.location.search);
}, []);

/*
Expand Down