Skip to content

Commit 6499a67

Browse files
Merge pull request #5726 from topcoder-platform/slash-home-hotfix
Slash home hotfix
2 parents 9c29824 + a797c88 commit 6499a67

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ workflows:
363363
filters:
364364
branches:
365365
only:
366-
- slash-tc
366+
- slash-home-hotfix
367367
# This is stage env for production QA releases
368368
- "build-prod-staging":
369369
context : org-global

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module.exports = {
102102
/* This is the same value as above, but it is used by topcoder-react-lib,
103103
* as a more verbose name for the param. */
104104
COMMUNITY_APP: 'https://community-app.topcoder-dev.com',
105-
CHALLENGES_URL: 'https://platform.topcoder.com/earn/find/challenges',
105+
CHALLENGES_URL: 'https://www.topcoder-dev.com/challenges',
106106

107107
ARENA: 'https://arena.topcoder-dev.com',
108108
AUTH: 'https://accounts-auth0.topcoder-dev.com',

config/production.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = {
2525
/* This is the same value as above, but it is used by topcoder-react-lib,
2626
* as a more verbose name for the param. */
2727
COMMUNITY_APP: 'https://community-app.topcoder.com',
28+
CHALLENGES_URL: 'https://www.topcoder.com/challenges',
2829

2930
AUTH: 'https://accounts-auth0.topcoder.com',
3031
BASE: 'https://www.topcoder.com',

src/shared/components/Dashboard/GigsFeed/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function GigsFeed({
2020
<span styleName="title">GIGS</span>
2121
<a
2222
styleName="allLink"
23-
href={`${config.URL.COMMUNITY_APP}/gigs`}
23+
href={`${config.URL.BASE}/gigs`}
2424
target="_blank"
2525
rel="noreferrer"
2626
>View all <span>gigs</span>
@@ -31,7 +31,7 @@ export default function GigsFeed({
3131
: gigs.message ? <span>{gigs.message}</span> : gigs.map(gig => (
3232
<div styleName="row" key={`dashboard-gigs-feed-${gig.externalId}`}>
3333
<a
34-
href={`${config.URL.COMMUNITY_APP}/gigs/${gig.externalId}`}
34+
href={`${config.URL.BASE}/gigs/${gig.externalId}`}
3535
target="_blank"
3636
rel="noreferrer"
3737
>{gig.title}

0 commit comments

Comments
 (0)