aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorChen Wei <chenwei@byzantine-lab.io>2019-07-03 14:12:31 +0800
committerChen Wei <chenwei@byzantine-lab.io>2019-07-03 14:12:31 +0800
commit9063fba5314a18e057125efcaaac2441e7d13a74 (patch)
treed8758b40eea4ea8bd35aaa2e7255621fffdd702b /ui/app/components
parentdd139452d053496d79816c881dbb59ee4aded81b (diff)
downloadtangerine-wallet-browser-9063fba5314a18e057125efcaaac2441e7d13a74.tar.gz
tangerine-wallet-browser-9063fba5314a18e057125efcaaac2441e7d13a74.tar.zst
tangerine-wallet-browser-9063fba5314a18e057125efcaaac2441e7d13a74.zip
Revert "part of replacing 'ETH'"
This reverts commit dd139452d053496d79816c881dbb59ee4aded81b.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/app/dropdowns/network-dropdown.js2
-rw-r--r--ui/app/components/app/signature-request.js2
-rw-r--r--ui/app/components/ui/currency-display/currency-display.component.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/app/dropdowns/network-dropdown.js b/ui/app/components/app/dropdowns/network-dropdown.js
index 78039ce4a..8563f0771 100644
--- a/ui/app/components/app/dropdowns/network-dropdown.js
+++ b/ui/app/components/app/dropdowns/network-dropdown.js
@@ -334,7 +334,7 @@ NetworkDropdown.prototype.renderCommonRpc = function (rpcListDetail, provider) {
return reversedRpcListDetail.map((entry) => {
const rpc = entry.rpcUrl
- const ticker = entry.ticker || 'TAN'
+ const ticker = entry.ticker || 'ETH'
const nickname = entry.nickname || ''
const currentRpcTarget = provider.type === 'rpc' && rpc === provider.rpcTarget
diff --git a/ui/app/components/app/signature-request.js b/ui/app/components/app/signature-request.js
index 40be80966..fa237f1d1 100644
--- a/ui/app/components/app/signature-request.js
+++ b/ui/app/components/app/signature-request.js
@@ -172,7 +172,7 @@ SignatureRequest.prototype.renderBalance = function () {
h('div.request-signature__balance-text', `${this.context.t('balance')}:`),
- h('div.request-signature__balance-value', `${balanceInEther} TAN`),
+ h('div.request-signature__balance-value', `${balanceInEther} ETH`),
])
}
diff --git a/ui/app/components/ui/currency-display/currency-display.component.js b/ui/app/components/ui/currency-display/currency-display.component.js
index 066b6b2ac..c15668da3 100644
--- a/ui/app/components/ui/currency-display/currency-display.component.js
+++ b/ui/app/components/ui/currency-display/currency-display.component.js
@@ -24,7 +24,7 @@ export default class CurrencyDisplay extends PureComponent {
const { className, displayValue, prefix, prefixComponent, style, suffix, hideTitle } = this.props
const text = `${prefix || ''}${displayValue}`
const title = suffix ? `${text} ${suffix}` : text
- console.log('suffix', suffix)
+
return (
<div
className={classnames('currency-display-component', className)}