diff --git a/src/data/constants/index.js b/src/data/constants/index.js index 107015641..c156645d3 100644 --- a/src/data/constants/index.js +++ b/src/data/constants/index.js @@ -39,7 +39,7 @@ const RESTRICTION_TYPE_OPTIONS = [ { value: 'custom-b2c', label: 'Custom B2C' }, ]; -const RESTRICTION_TYPE_VALUES = RESTRICTION_TYPE_OPTIONS.map(opt=>opt.value).filter(Boolean).join(',') +const RESTRICTION_TYPE_VALUES = RESTRICTION_TYPE_OPTIONS.map(opt => opt.value).filter(Boolean).join(','); export { VERIFIED_TRACK, diff --git a/src/utils/index.js b/src/utils/index.js index 0b464600a..862207c71 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -370,7 +370,6 @@ const buildInitialPrices = (entitlements, courseRuns) => { const hasMastersTrack = (runTypeUuid, runTypeModes) => (!!runTypeUuid && !!runTypeModes[runTypeUuid] && runTypeModes[runTypeUuid].includes(MASTERS_TRACK.key)); - export { courseRunIsArchived, getDateWithDashes,