Skip to content

Commit 959e5a2

Browse files
committed
Fix comment. Sorting by review start date is ascending as in prod env.
1 parent d025513 commit 959e5a2

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), // descending
97+
func: (a, b) => moment(b.startDate) - moment(a.startDate), // ascending
9898
name: 'Review start date',
9999
},
100100
};

0 commit comments

Comments
 (0)