We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7e414 commit 0ae4e1eCopy full SHA for 0ae4e1e
src/utils/challenge/filter.js
@@ -379,15 +379,8 @@ export function combine(...filters) {
379
* @return {Object}
380
*/
381
export function mapToBackend(filter) {
382
- if (filter.or) return {};
383
-
384
const res = {};
385
if (filter.groups) res.groups = filter.groups;
386
387
- /* NOTE: Right now the frontend challenge filter by tag works different,
388
- * it looks for matches in the challenge name OR in the techs / platforms. */
389
- // if (filter.tags) res.technologies = filter.tags.join(',');
390
391
return res;
392
}
393
0 commit comments