Skip to content

Commit

Permalink
Fix typo and disable eslint on a specific unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-ramadas committed Mar 3, 2019
1 parent 4f750cd commit bf28fa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { Component } from 'react'; // eslint-disable-line import/no-extra
import Fuse from 'fuse.js';
import Mousetrap from 'mousetrap';
// REVIEW: globalBind is not used, but changes the prototype of Mousetrap.
// Improve the way thisis being done.
import globalBind from 'mousetrap-global-bind';
// Improve the way this is being done.
import globalBind from 'mousetrap-global-bind'; // eslint-disable-line no-unused-vars
import './App.css';
import AlbumComponent from './AlbumComponent';
import { getClassNameTheme } from './Util';
Expand Down

0 comments on commit bf28fa1

Please sign in to comment.