Skip to content

Commit

Permalink
Fixed ESLint bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Krulis committed Nov 16, 2017
1 parent 3105b00 commit d2ba1d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/redux/middleware/loggerMiddleware.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const middleware = store => next => action => {
/* eslint no-console: ["error", { allow: ["log"] }] */
let verbose = false;
if (verbose) {
console.log(action);
Expand Down
2 changes: 1 addition & 1 deletion src/redux/selectors/usersGroups.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { List, Map } from 'immutable';
import { loggedInUserSelector } from './users';
import { groupsSelector, filterGroups } from './groups';
import { getAssignments } from './assignments';
import { isReady, getJsData } from '../helpers/resourceManager';
import { isReady } from '../helpers/resourceManager';

const EMPTY_MAP = Map();
const EMPTY_LIST = List();
Expand Down

0 comments on commit d2ba1d5

Please sign in to comment.