From a086c034f14e0827b967c8a28d7b22b26b4dd129 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 10 Oct 2018 09:55:03 +0200 Subject: [PATCH] LandingPage flowtype --- src/views/Landing/Container.js | 2 +- src/views/Landing/components/InstallBridge/index.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/Landing/Container.js b/src/views/Landing/Container.js index 2a58e643..d10ed485 100644 --- a/src/views/Landing/Container.js +++ b/src/views/Landing/Container.js @@ -19,7 +19,7 @@ export type StateProps = { } type DispatchProps = { - + selectFirstAvailableDevice: typeof RouterActions.selectFirstAvailableDevice, } type OwnProps = { diff --git a/src/views/Landing/components/InstallBridge/index.js b/src/views/Landing/components/InstallBridge/index.js index f62645d3..a53704ff 100644 --- a/src/views/Landing/components/InstallBridge/index.js +++ b/src/views/Landing/components/InstallBridge/index.js @@ -12,6 +12,7 @@ import Loader from 'components/Loader'; import P from 'components/Paragraph'; import Icon from 'components/Icon'; import ICONS from 'config/icons'; +import * as RouterActions from 'actions/RouterActions'; import type { State as TrezorConnectState } from 'reducers/TrezorConnectReducer';