Skip to content

Commit

Permalink
Merge pull request #211 from estartando-devs/fix/show-approved-list
Browse files Browse the repository at this point in the history
Fix: adjusting bug
  • Loading branch information
ramonxm authored Jun 16, 2024
2 parents af13aba + 7e5ffe2 commit c0423fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Approved/ApprovedList/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ export const coursesData: Record<string, Course> = {
widthContainerTitle: '300px',
title: 'Front-end',
coursePresentation: '',
courseModules: approvedListMock.frontend.sort(),
courseModules: approvedListMock.frontend.sort((a, b) => a.localeCompare(b)),
},
backEnd: {
backgroundTitle: '#1e6f7a',
widthContainerTitle: '293px',
title: 'Back-end',
coursePresentation: '',
courseModules: approvedListMock.backend.sort(),
courseModules: approvedListMock.backend.sort((a, b) => a.localeCompare(b)),
},
design: {
backgroundTitle: '#45408e',
widthContainerTitle: '173px',
title: 'Design UI/UX',
coursePresentation: '',
courseModules: approvedListMock.design.sort(),
courseModules: approvedListMock.design.sort((a, b) => a.localeCompare(b)),
},
};

0 comments on commit c0423fe

Please sign in to comment.