Skip to content
This repository has been archived by the owner on Dec 19, 2020. It is now read-only.

Commit

Permalink
fix balance
Browse files Browse the repository at this point in the history
  • Loading branch information
Pechalka committed Nov 27, 2018
1 parent 4a584ae commit dede6a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/containers/Wallet/EthSend.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class EthSend extends Component {
export default connect(
({ wallet }) => ({
defaultAccount: wallet.defaultAccount,
defaultAccountBalance: wallet.defaultAccountBalance,
defaultAccountBalance: actions.getDefaultAccountBalance({ wallet }),
}),
actions,
)(EthSend);
6 changes: 3 additions & 3 deletions src/containers/Wallet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ class Page extends Component {
}

if (tab === 'eth' && menu === 'send') {
// content = (
// <EthSend />
// );
content = (
<EthSend />
);
}

if (tab === 'cyb' && menu === 'accounts') {
Expand Down

0 comments on commit dede6a5

Please sign in to comment.