Skip to content

Commit

Permalink
Fix: adjusting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Junior331 committed Jun 16, 2024
1 parent 6106b9e commit 7e5ffe2
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 7e5ffe2

Please sign in to comment.