From 9459936cd215a5ba4624defdb4a81cf6fd73978c Mon Sep 17 00:00:00 2001 From: Cagdas U Date: Sat, 5 Sep 2020 10:23:54 +0300 Subject: [PATCH] fix(profile-page): wrong MM url at history graph --- src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx b/src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx index 21112b3aa3..9e7034c9a4 100644 --- a/src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx +++ b/src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx @@ -211,7 +211,7 @@ export default class HistoryGraph extends React.Component { } if (track === 'DATA_SCIENCE') { if (subTrack === 'MARATHON_MATCH') { - return `/challenges/${challengeId}`; + return `${config.URL.COMMUNITY}/tc?module=MatchDetails&rd=${challengeId}`; } if (subTrack === 'SRM') { return `${config.URL.COMMUNITY}/stat?c=round_overview&rd=${challengeId}`;