Fix imports

pull/8/head
Vasek Mlejnsky 6 years ago
parent 85df75c8c5
commit a837db7a49

@ -7,7 +7,7 @@ import Tooltip from 'rc-tooltip';
import { QRCode } from 'react-qr-svg';
import { Notification } from 'components/Notification';
import SelectedAccount from '../SelectedAccount';
import SelectedAccount from 'views/Wallet/components/SelectedAccount';
import type { Props } from './index';
@ -96,6 +96,6 @@ const AccountReceive = (props: Props) => {
export default (props: Props) => (
<SelectedAccount {...props}>
<Receive {...props} />
<AccountReceive {...props} />
</SelectedAccount>
);

@ -5,12 +5,11 @@ import styled from 'styled-components';
import Select from 'react-select';
import { H2 } from 'components/Heading';
import { calculate, validation } from 'actions/SendFormActions';
import SelectedAccount from 'views/Wallet/components/SelectedAccount';
import type { Token } from 'flowtype';
import AdvancedForm from './components/AdvancedForm';
import PendingTransactions from './components/PendingTransactions';
import { FeeSelectValue, FeeSelectOption } from './components/FeeSelect';
import SelectedAccount from '../SelectedAccount';
import type { Props } from './index';

@ -13,7 +13,7 @@ import WalletContainer from 'views/Wallet';
import AccountSummary from 'views/Wallet/views/AccountSummary/Container';
import AccountSend from 'views/Wallet/views/AccountSend/Container';
import AccountReceive from 'views/Wallet/views/AccountReceive/Container';
import AccountSignVerify from 'views/Wallet/views/AccountSignVerify/Container';
import AccountSignVerify from 'views/Wallet/views/AccountSignVerify';
import WalletDashboard from 'views/Wallet/views/Dashboard';
import WalletDeviceSettings from 'views/Wallet/views/DeviceSettings';

Loading…
Cancel
Save