Skip to content

Commit 0eb9250

Browse files
committed
fixed config property name TIMELNE_EVENT_API => TIMELINE_WALL_API
1 parent 9856abc commit 0eb9250

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ module.exports = {
167167
SUBDOMAIN_PROFILE_CONFIG: [{
168168
groupId: '20000000', communityId: 'wipro', communityName: 'topgear', userProfile: 'https://topgear-app.wipro.com/user-details',
169169
}],
170-
TIMELNE_EVENT_API: 'https://api.topcoder-dev.com/v5/timeline-wall',
170+
TIMELINE_WALL_API: 'http://localhost:3001/v5/timeline-wall',
171171
},
172172

173173
/* Information about Topcoder user groups can be cached in various places.

config/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module.exports = {
6262
},
6363
EMAIL_VERIFY_URL: 'http://www.topcoder.com/settings/account/changeEmail',
6464
THRIVE_FEED: 'https://topcoder.com/api/feeds/thrive',
65-
TIMELNE_EVENT_API: 'https://api.topcoder.com/v5/timeline-wall',
65+
TIMELINE_WALL_API: 'https://api.topcoder.com/v5/timeline-wall',
6666
},
6767
/* Filestack configuration for uploading Submissions
6868
* These are for the production back end */

src/shared/services/timelineWall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { logger } from 'topcoder-react-lib';
44
import _ from 'lodash';
55
import { DEFAULT_AVATAR_URL } from '../utils/url';
66

7-
const baseUrl = config.URL.TIMELNE_EVENT_API;
7+
const baseUrl = config.URL.TIMELINE_WALL_API;
88
const v5ApiUrl = config.API.V5;
99

1010
/**

0 commit comments

Comments
 (0)