Skip to content

Commit 23bb2ff

Browse files
authored
Merge pull request #4656 from topcoder-platform/develop
Updates
2 parents c295a2d + c3559b9 commit 23bb2ff

File tree

27 files changed

+700
-903
lines changed

27 files changed

+700
-903
lines changed

.circleci/config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ workflows:
231231
branches:
232232
only:
233233
- develop
234-
- feature-contentful
235234
# This is alternate dev env for parallel testing
236235
- "build-test":
237236
context : org-global

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "./node_modules/topcoder-react-utils/config/eslint/default.json",
33
"rules": {
44
"jsx-a11y/anchor-is-valid": false,
5-
"import/no-cycle": [2, { "maxDepth": 1 }]
5+
"import/no-cycle": [2, { "maxDepth": 1 }],
6+
"react/forbid-prop-types": false
67
},
78
"env": {
89
"browser": true

__tests__/shared/components/__snapshots__/TopcoderFooter.jsx.snap

+1-10
Original file line numberDiff line numberDiff line change
@@ -348,15 +348,6 @@ exports[`Matches shallow shapshot 1`] = `
348348
Talk to Sales
349349
</a>
350350
</li>
351-
<li
352-
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
353-
>
354-
<a
355-
href="https://www.topcoder-dev.com/community/terms"
356-
>
357-
Terms
358-
</a>
359-
</li>
360351
</ul>
361352
</div>
362353
<div
@@ -613,7 +604,7 @@ exports[`Matches shallow shapshot 1`] = `
613604
© 2020 Topcoder
614605
<a
615606
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
616-
href="https://www.topcoder.com/privacy-policy/"
607+
href="https://www.topcoder-dev.com/policy"
617608
>
618609
Policies
619610
</a>

__tests__/shared/containers/__snapshots__/TopcoderHeader.jsx.snap

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ exports[`Matches shallow snapshot 1`] = `
1111
closeMobileMenu={[Function]}
1212
closeSearch={[Function]}
1313
dismissChallengeNotifications={[Function]}
14+
headerMenu={null}
1415
loadNotifications={[Function]}
1516
markAllNotificationAsRead={[Function]}
1617
markAllNotificationAsSeen={[Function]}

config/default.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ module.exports = {
160160
COMMUNITY_API: 'http://localhost:8000',
161161
COMMUNITY_APP_GITHUB_ISSUES: 'https://github.com/topcoder-platform/community-app/issues',
162162
EMAIL_VERIFY_URL: 'http://www.topcoder-dev.com/settings/account/changeEmail',
163-
THRIVE_POLL_FEED: 'https://www.topcoder.com/feed',
164163
},
165164

166165
/* Information about Topcoder user groups can be cached in various places.
@@ -406,4 +405,5 @@ module.exports = {
406405
TC_EDU_ARTICLES_PATH: '/articles',
407406
TC_EDU_SEARCH_PATH: '/search',
408407
TC_EDU_SEARCH_BAR_MAX_RESULTS_EACH_GROUP: 3,
408+
POLICY_PAGES_PATH: '/policy',
409409
};

0 commit comments

Comments
 (0)