diff --git a/packages/app-rfi/src/core/utils/datasource-helper.js b/packages/app-rfi/src/core/utils/datasource-helper.js index b0a7282c19..bd1ba9caab 100644 --- a/packages/app-rfi/src/core/utils/datasource-helper.js +++ b/packages/app-rfi/src/core/utils/datasource-helper.js @@ -56,14 +56,8 @@ export const normalizeDegreeData = data => { ({ categoryDescription }) => categoryDescription ) || [], - // curr.acadPlanDescription string - // title = (Degree not included) - // title (Certificate) = (ex Degree is a Cert) - title: `${curr.acadPlanDescription}${ - curr.degreeDescriptionShort && curr.acadPlanType !== KEY.CER - ? ` (${curr.degreeDescriptionShort})` - : `` - }`, + // curr.acadPlanMarketingDescription string + title: curr.acadPlanMarketingDescription, }; acc.push(p); } diff --git a/packages/app-rfi/src/core/utils/fetchPrograms.js b/packages/app-rfi/src/core/utils/fetchPrograms.js index 121eb8bfcc..db8e3c9b65 100644 --- a/packages/app-rfi/src/core/utils/fetchPrograms.js +++ b/packages/app-rfi/src/core/utils/fetchPrograms.js @@ -43,7 +43,7 @@ function getServiceUrl({ if (Interest2) { serviceUrl = `${dataSourceDegreeSearch}/acad-plan/${Interest2}` + - `?include=degreeDescriptionShort` + + `?include=acadPlanMarketingDescription` + `&include=degreeDescriptionLong` + `&include=campusesOffered` + `&include=planCategories` + @@ -78,7 +78,7 @@ function getServiceUrl({ `${dataSourceDegreeSearch}/acad-plans` + `?filter=activeInDegreeSearch` + `${parameter}` + - `&include=degreeDescriptionShort` + + `&include=acadPlanMarketingDescription` + `&include=degreeDescriptionLong` + `&include=campusesOffered` + `&include=planCategories` +