Skip to content

Commit

Permalink
Remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
asmsuechan committed Oct 15, 2017
1 parent 1beae44 commit e9d858d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions browser/main/modals/PreferencesModal/Crowdfunding.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
import React from 'react'
import CSSModules from 'browser/lib/CSSModules'
import styles from './Crowdfunding.styl'
import ConfigManager from 'browser/main/lib/ConfigManager'
import store from 'browser/main/store'

const electron = require('electron')
const { shell, remote } = electron
const { shell } = electron

class Crowdfunding extends React.Component {
constructor (props) {
super(props)

this.state = {
config: this.props.config
}
}

Expand Down
5 changes: 1 addition & 4 deletions browser/main/modals/PreferencesModal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,7 @@ class Preferences extends React.Component {
)
case 'CROWDFUNDING':
return (
<Crowdfunding
dispatch={dispatch}
config={config}
/>
<Crowdfunding />
)
case 'STORAGES':
default:
Expand Down

0 comments on commit e9d858d

Please sign in to comment.