diff --git a/src/scripts/helpers.js b/src/scripts/helpers.js index 658f9d4..bfbf85c 100644 --- a/src/scripts/helpers.js +++ b/src/scripts/helpers.js @@ -17,11 +17,7 @@ function filterCourses(courses) { courses[i].books = ""; } } - - return R.filter( - function (c) { - return c.prof != "Staff"; - }, courses); + return R.filter((c) => { return c.prof != "Staff"}, courses); } function groupsof(n, xs) { diff --git a/src/scripts/search.tag b/src/scripts/search.tag index ce34f3b..8cd1e3e 100644 --- a/src/scripts/search.tag +++ b/src/scripts/search.tag @@ -43,7 +43,7 @@