We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a320438 commit 383d30dCopy full SHA for 383d30d
src/shared/components/challenge-listing/Listing/Bucket/index.jsx
@@ -83,7 +83,7 @@ export default function Bucket({
83
84
let filteredChallenges = sortedChallenges;
85
86
- if(!_.includes(roles, 'administrator')){
+ if (!_.includes(roles, 'administrator')) {
87
filteredChallenges = sortedChallenges.filter((ch) => {
88
if (ch.type === 'Task'
89
&& ch.task
@@ -95,7 +95,6 @@ export default function Bucket({
95
return ch;
96
});
97
}
98
-
99
// sortedChallenges.sort(Sort[activeSort].func);
100
101
// const bucketQuery = qs.stringify({
@@ -282,6 +281,7 @@ Bucket.defaultProps = {
282
281
openChallengesInNewTabs: false,
283
sort: null,
284
userId: '',
+ auth: {},
285
expandedTags: [],
286
expandTag: null,
287
activeBucket: '',
0 commit comments