Skip to content

Commit 4bc24f2

Browse files
Fix test
1 parent 0b002e8 commit 4bc24f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/challenge/filter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function filterByTags(challenge, state) {
154154
function filterByEvents(challenge, state) {
155155
if (_.isEmpty(state.events)) return true;
156156
if (_.isEmpty(challenge.events)) return false;
157-
return state.events.some(key => challenge.events.find(e => e.key === key ));
157+
return state.events.some(key => challenge.events.find(e => e.key === key));
158158
}
159159

160160
function filterByText(challenge, state) {

0 commit comments

Comments
 (0)