diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-06-30 19:44:40 +0300 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-06-30 23:58:44 +0300 |
| commit | c237f34ae776aa2abfea26270fba7948fc54afc5 (patch) | |
| tree | 869cd3769e5f98f713f6d749fedc27692fc8e3eb /app | |
| parent | 99ae6c3fd0840d9ff06c105c7208f35d4551578f (diff) | |
| download | mullvadvpn-c237f34ae776aa2abfea26270fba7948fc54afc5.tar.xz mullvadvpn-c237f34ae776aa2abfea26270fba7948fc54afc5.zip | |
Fix lint issues in SettingsPage
Diffstat (limited to 'app')
| -rw-r--r-- | app/containers/SettingsPage.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/containers/SettingsPage.js b/app/containers/SettingsPage.js index e9cc3814d9..b6807a0a22 100644 --- a/app/containers/SettingsPage.js +++ b/app/containers/SettingsPage.js @@ -2,7 +2,6 @@ import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { push } from 'react-router-redux'; import Settings from '../components/Settings'; -import userActions from '../actions/user'; import settingsActions from '../actions/settings'; import { remote, shell } from 'electron'; import { links } from '../config'; @@ -11,7 +10,7 @@ const mapStateToProps = (state) => { return state; }; -const mapDispatchToProps = (dispatch, props) => { +const mapDispatchToProps = (dispatch, _props) => { const { updateSettings } = bindActionCreators(settingsActions, dispatch); return { onQuit: () => remote.app.quit(), |
