From 0128a16602c28e4b3bf83981e0e71ba4265b41d0 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Tue, 27 Nov 2018 11:44:23 +0100 Subject: [PATCH] rename coin specific components --- src/views/Wallet/views/Account/Send/index.js | 8 ++++---- src/views/Wallet/views/Account/Summary/index.js | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/Wallet/views/Account/Send/index.js b/src/views/Wallet/views/Account/Send/index.js index 31acfaf7..34caa47d 100644 --- a/src/views/Wallet/views/Account/Send/index.js +++ b/src/views/Wallet/views/Account/Send/index.js @@ -405,8 +405,8 @@ export default AccountSend; import { connect } from 'react-redux'; import type { State } from 'flowtype'; -import EthereumSend from './ethereum/Container'; -import RippleSend from './ripple/Container'; +import EthereumTypeSendForm from './ethereum/Container'; +import RippleTypeSendForm from './ripple/Container'; export type BaseProps = { selectedAccount: $ElementType, @@ -421,9 +421,9 @@ export default connect((state: State): BaseProps => ({ switch (network.type) { case 'ethereum': - return ; + return ; case 'ripple': - return ; + return ; default: return null; } diff --git a/src/views/Wallet/views/Account/Summary/index.js b/src/views/Wallet/views/Account/Summary/index.js index a0a6a5f8..7c5af467 100644 --- a/src/views/Wallet/views/Account/Summary/index.js +++ b/src/views/Wallet/views/Account/Summary/index.js @@ -3,8 +3,8 @@ import React from 'react'; import { connect } from 'react-redux'; import type { State } from 'flowtype'; -import EthereumSummary from './ethereum/Container'; -import RippleSummary from './ripple/Container'; +import EthereumTypeSummary from './ethereum/Container'; +import RippleTypeSummary from './ripple/Container'; type WrapperProps = { selectedAccount: $ElementType, @@ -19,9 +19,9 @@ export default connect((state: State): WrapperProps => ({ switch (network.type) { case 'ethereum': - return ; + return ; case 'ripple': - return ; + return ; default: return null; }