fixing naming

This commit is contained in:
Anthony 2021-07-28 15:24:28 +02:00
parent 4f14e017fe
commit cd873486da
No known key found for this signature in database
GPG key ID: C386D3C93D50E356
2 changed files with 3 additions and 4 deletions

View file

@ -78,12 +78,11 @@ const WalletBalance = (props: Props) => {
actions={
<>
<h2 className="section__title--small">
<Icon size="12" icon={ICONS.FINANCE} />
413 Received Total
$413 Received Total
</h2>
<h2 className="section__title--small">
$100 Already Withdrawn!!!!
$100 Withdrawn
<Button
button="link"
label={detailsExpanded ? __('View less') : __('View more')}

View file

@ -2,7 +2,7 @@
import React from 'react';
import { withRouter } from 'react-router';
import WalletBalance from 'component/walletBalance';
import WalletFiatBalance from 'component/WalletFiatBalance';
import WalletFiatBalance from 'component/walletFiatBalance';
import TxoList from 'component/txoList';
import Page from 'component/page';
import Spinner from 'component/spinner';