Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zawan-ila committed Jun 24, 2024
1 parent 579bc87 commit 0472c9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/data/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ const buildInitialPrices = (entitlements, courseRuns) => {
const hasMastersTrack = (runTypeUuid, runTypeModes) => (!!runTypeUuid
&& !!runTypeModes[runTypeUuid] && runTypeModes[runTypeUuid].includes(MASTERS_TRACK.key));


export {
courseRunIsArchived,
getDateWithDashes,
Expand Down

0 comments on commit 0472c9d

Please sign in to comment.