mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
fix(require): require classNames throws error under Linux
The issue stems that Mac OS X uses a case-insensitive filesystem by default, while most Linux filesystems are case-sensitive. The classNames package will require successfully on Mac OS X during Travis tests, but since the spec test suite isn't normally run under Linux this bug is more unlikely to appear.
This commit is contained in:
parent
e275f353c1
commit
a022718684
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
import _ from 'underscore';
|
||||
import classNames from 'classNames';
|
||||
import classNames from 'classnames';
|
||||
import React, {Component, PropTypes} from 'react';
|
||||
|
||||
class EditableList extends Component {
|
||||
|
|
Loading…
Reference in a new issue