Skip to content

Commit f0cc8b0

Browse files
committed
issue 5433 feedback
1 parent 7ff1230 commit f0cc8b0

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

config/default.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ module.exports = {
111111
BLOG_FEED: 'https://www.topcoder.com/blog/feed/',
112112
COMMUNITY: 'https://community.topcoder-dev.com',
113113
FORUMS: 'https://apps.topcoder-dev.com/forums',
114-
DISCUSSION_FORUM: 'https://discussions.topcoder.com',
115114
FORUMS_VANILLA: 'https://vanilla.topcoder-dev.com',
116115
HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles',
117116
SUBMISSION_REVIEW: 'https://submission-review.topcoder-dev.com',

config/production.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ module.exports = {
3131
HOME: '/my-dashboard',
3232
COMMUNITY: 'https://community.topcoder.com',
3333
FORUMS: 'https://apps.topcoder.com/forums',
34-
DISCUSSION_FORUM: 'https://discussions.topcoder.com',
3534
FORUMS_VANILLA: 'https://discussions.topcoder.com',
3635
HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles',
3736
SUBMISSION_REVIEW: 'https://submission-review.topcoder.com',

src/shared/components/Settings/Preferences/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default class Preferences extends React.Component {
8888
case 'e-mail':
8989
return <NewsletterPreferencesContainer email={email} />;
9090
case 'forum':
91-
return (window.location.href = `${config.URL.DISCUSSION_FORUM}/profile/preferences`) && <LoadingIndicator />;
91+
return (window.location.href = `${config.URL.FORUMS_VANILLA}/profile/preferences`) && <LoadingIndicator />;
9292
case 'payment':
9393
return (window.location.href = `${config.URL.COMMUNITY}/tc?module=EditPaymentPreferences`) && <LoadingIndicator />;
9494
default:

0 commit comments

Comments
 (0)