diff options
Diffstat (limited to 'app/containers/SelectLocationPage.js')
| -rw-r--r-- | app/containers/SelectLocationPage.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/containers/SelectLocationPage.js b/app/containers/SelectLocationPage.js index 987173856b..c39f76eba7 100644 --- a/app/containers/SelectLocationPage.js +++ b/app/containers/SelectLocationPage.js @@ -6,8 +6,10 @@ import SelectLocation from '../components/SelectLocation'; import RelaySettingsBuilder from '../lib/relay-settings-builder'; import log from 'electron-log'; +import type { ReduxDispatch } from '../redux/store'; + const mapStateToProps = (state) => state; -const mapDispatchToProps = (dispatch, props) => { +const mapDispatchToProps = (dispatch: ReduxDispatch, props) => { const { backend } = props; return { onClose: () => dispatch(push('/connect')), |
