Skip to content

Commit 4e60e7a

Browse files
committed
Revert back the comment. As sorting is in descending order.
1 parent 959e5a2 commit 4e60e7a

File tree

1 file changed

+1
-1
lines changed
  • src/shared/utils/challenge-listing

1 file changed

+1
-1
lines changed

src/shared/utils/challenge-listing/sort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default {
9494
},
9595
[SORTS.REVIEW_OPPORTUNITIES_START_DATE]: {
9696
// This will implicitly use moment#valueOf
97-
func: (a, b) => moment(b.startDate) - moment(a.startDate), // ascending
97+
func: (a, b) => moment(b.startDate) - moment(a.startDate), // descending
9898
name: 'Review start date',
9999
},
100100
};

0 commit comments

Comments
 (0)