Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstevens committed Jun 9, 2017
1 parent 88e72e0 commit 36e7546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ustyle-react",
"version": "0.0.35",
"version": "0.0.36",
"description": "uStyle React Components",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {PureComponent} from 'react'
import PropTypes from 'prop-types'
import cx from 'classnames'

const ICON_PATH = process.env.ICON_PATH || (typeof(window) !== 'undefined' && window['ICON_PATH']) || '/icons.svg'
const ICON_PATH = process.env.ICON_PATH || (typeof (window) !== 'undefined' && window['ICON_PATH']) || '/icons.svg'
const SIZES = ['small', 'medium', 'large']
const COLORS = ['white', 'typegrey', 'inputgrey', 'typecyan', 'custom']
const CUSTOM_ICONS = [
Expand Down

0 comments on commit 36e7546

Please sign in to comment.