diff --git a/src/js/views/Wallet/views/AccountReceive/Container.js b/src/js/views/Wallet/views/AccountReceive/Container.js index 002d8a8c..b63d4699 100644 --- a/src/js/views/Wallet/views/AccountReceive/Container.js +++ b/src/js/views/Wallet/views/AccountReceive/Container.js @@ -9,12 +9,11 @@ import { default as ReceiveActions } from 'actions/ReceiveActions'; import * as TokenActions from 'actions/TokenActions'; import type { MapStateToProps, MapDispatchToProps } from 'react-redux'; import type { State, Dispatch } from 'flowtype'; -import Receive from './index'; - import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps, -} from '../SelectedAccount'; +} from 'views/Wallet/components/SelectedAccount'; +import Receive from './index'; type OwnProps = { } diff --git a/src/js/views/Wallet/views/AccountSend/Container.js b/src/js/views/Wallet/views/AccountSend/Container.js index 8b4a1a10..e56bc9b0 100644 --- a/src/js/views/Wallet/views/AccountSend/Container.js +++ b/src/js/views/Wallet/views/AccountSend/Container.js @@ -9,9 +9,9 @@ import { default as SendFormActions } from 'actions/SendFormActions'; import * as SessionStorageActions from 'actions/SessionStorageActions'; import type { MapStateToProps, MapDispatchToProps } from 'react-redux'; import type { State, Dispatch } from 'flowtype'; +import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from 'views/Wallet/components/SelectedAccount'; import SendForm from './index'; -import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from '../SelectedAccount'; type OwnProps = { } diff --git a/src/js/views/Wallet/views/AccountSummary/Container.js b/src/js/views/Wallet/views/AccountSummary/Container.js index d0e83030..018bda6a 100644 --- a/src/js/views/Wallet/views/AccountSummary/Container.js +++ b/src/js/views/Wallet/views/AccountSummary/Container.js @@ -1,7 +1,7 @@ /* @flow */ -import React, { Component, PropTypes } from 'react'; +import React, { Component } from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; @@ -10,8 +10,8 @@ import * as SummaryActions from 'actions/SummaryActions'; import * as TokenActions from 'actions/TokenActions'; import type { State, Dispatch } from 'flowtype'; +import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from 'views/Wallet/components/SelectedAccount'; import Summary from './index'; -import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from '../SelectedAccount'; type OwnProps = { } diff --git a/src/js/views/Wallet/views/AccountSummary/index.js b/src/js/views/Wallet/views/AccountSummary/index.js index 367a5ecd..6591b163 100644 --- a/src/js/views/Wallet/views/AccountSummary/index.js +++ b/src/js/views/Wallet/views/AccountSummary/index.js @@ -1,6 +1,6 @@ /* @flow */ -import styled, { css } from 'styled-components'; -import React, { Component } from 'react'; +import styled from 'styled-components'; +import React from 'react'; import { H2 } from 'components/Heading'; import BigNumber from 'bignumber.js'; import { Async as AsyncSelect } from 'react-select'; @@ -11,7 +11,7 @@ import { Notification } from 'components/Notification'; import CoinLogo from 'components/CoinLogo'; import * as stateUtils from 'reducers/utils'; import type { NetworkToken } from 'reducers/LocalStorageReducer'; -import SelectedAccount from 'views/Wallet/components/SelectedAccount'; // TODO: SekectedAccount component +import SelectedAccount from 'views/Wallet/components/SelectedAccount'; import Link from 'components/Link'; import SummaryDetails from './components/Details'; import SummaryTokens from './components/Tokens';