Skip to content

Commit b6050db

Browse files
committed
Don’t sort by status or type - not working in challenge API
1 parent 02f388e commit b6050db

File tree

1 file changed

+2
-4
lines changed
  • src/components/ChallengesComponent/ChallengeList

1 file changed

+2
-4
lines changed

src/components/ChallengesComponent/ChallengeList/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -694,8 +694,7 @@ class ChallengeList extends Component {
694694
</div>
695695
<div className={styles.header}>
696696
<div
697-
className={cn(styles.col5, styles.sortable)}
698-
onClick={() => this.updateSort('type')}
697+
className={cn(styles.col5)}
699698
>
700699
<span className={styles.filterItem}>
701700
Type
@@ -748,8 +747,7 @@ class ChallengeList extends Component {
748747
</span>
749748
</div>
750749
<div
751-
className={cn(styles.col3, styles.sortable)}
752-
onClick={() => this.updateSort('status')}
750+
className={cn(styles.col3)}
753751
>
754752
<span className={styles.filterItem}>
755753
Status

0 commit comments

Comments
 (0)