Skip to content

Commit e1822d4

Browse files
Merge pull request #4904 from topcoder-platform/issue-4898
Hide RSS feature from front-end
2 parents f0af65d + 09f4c8b commit e1822d4

File tree

1 file changed

+5
-1
lines changed
  • src/shared/components/challenge-listing/Sidebar/BucketSelector

1 file changed

+5
-1
lines changed

src/shared/components/challenge-listing/Sidebar/BucketSelector/index.jsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ import './style.scss';
1515

1616
const Filter = challengeUtils.filter;
1717

18-
const RSS_LINK = 'http://feeds.topcoder.com/challenges/feed?list=active&contestType=all';
18+
// DISABLED: Until feeds.topcoder.com domain fixed community-app#4606
19+
// const RSS_LINK = 'http://feeds.topcoder.com/challenges/feed?list=active&contestType=all';
1920

2021
export default function BucketSelector({
2122
activeBucket,
@@ -109,11 +110,14 @@ export default function BucketSelector({
109110
) : ''
110111
}
111112
<hr />
113+
{/* DISABLED: Until feeds.topcoder.com domain fixed community-app#4606 */}
114+
{/*
112115
<div styleName="get-rss">
113116
<a href={RSS_LINK}>
114117
Get the RSS feed
115118
</a>
116119
</div>
120+
*/}
117121
</div>
118122
);
119123
}

0 commit comments

Comments
 (0)