Skip to content

Commit 383d30d

Browse files
committed
Lint
1 parent a320438 commit 383d30d

File tree

1 file changed

+2
-2
lines changed
  • src/shared/components/challenge-listing/Listing/Bucket

1 file changed

+2
-2
lines changed

src/shared/components/challenge-listing/Listing/Bucket/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default function Bucket({
8383

8484
let filteredChallenges = sortedChallenges;
8585

86-
if(!_.includes(roles, 'administrator')){
86+
if (!_.includes(roles, 'administrator')) {
8787
filteredChallenges = sortedChallenges.filter((ch) => {
8888
if (ch.type === 'Task'
8989
&& ch.task
@@ -95,7 +95,6 @@ export default function Bucket({
9595
return ch;
9696
});
9797
}
98-
9998
// sortedChallenges.sort(Sort[activeSort].func);
10099

101100
// const bucketQuery = qs.stringify({
@@ -282,6 +281,7 @@ Bucket.defaultProps = {
282281
openChallengesInNewTabs: false,
283282
sort: null,
284283
userId: '',
284+
auth: {},
285285
expandedTags: [],
286286
expandTag: null,
287287
activeBucket: '',

0 commit comments

Comments
 (0)