Skip to content

Commit ee02f53

Browse files
committed
fix: add config var for PLATFORMUI_SITE_URL
1 parent d16f290 commit ee02f53

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

config/default.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,4 +453,5 @@ module.exports = {
453453
SDK_KEY: '7V4CJhurXT3Y3bnzv1hv1',
454454
},
455455
PLATFORM_SITE_URL: 'https://platform.topcoder-dev.com',
456+
PLATFORMUI_SITE_URL: 'https://platform-ui.topcoder-dev.com',
456457
};

config/production.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,5 @@ module.exports = {
226226
TC_EDU_SEARCH_BAR_MAX_RESULTS_EACH_GROUP: 3,
227227
ENABLE_RECOMMENDER: true,
228228
PLATFORM_SITE_URL: 'https://platform.topcoder.com',
229+
PLATFORMUI_SITE_URL: 'https://platform-ui.topcoder.com',
229230
};

src/shared/components/ProfilePage/TcaCertificates/TcaCertificateModal/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { config } from 'topcoder-react-utils';
66
import ProfileModal from '../../ProfileModal';
77
import styles from './styles.scss';
88

9-
const tcAcademyPath = `${config.PLATFORM_SITE_URL}${config.TC_ACADEMY_BASE_PATH}`;
9+
const tcAcademyPath = `${config.PLATFORMUI_SITE_URL}${config.TC_ACADEMY_BASE_PATH}`;
1010

1111
const TcaCertificateModal = ({
1212
certificate,

0 commit comments

Comments
 (0)