aboutsummaryrefslogtreecommitdiffstats
path: root/ui/classic
diff options
context:
space:
mode:
Diffstat (limited to 'ui/classic')
-rw-r--r--ui/classic/app/components/editable-label.js3
-rw-r--r--ui/classic/app/components/network.js1
2 files changed, 0 insertions, 4 deletions
diff --git a/ui/classic/app/components/editable-label.js b/ui/classic/app/components/editable-label.js
index 48ba5060e..41936f5e0 100644
--- a/ui/classic/app/components/editable-label.js
+++ b/ui/classic/app/components/editable-label.js
@@ -13,7 +13,6 @@ function EditableLabel () {
EditableLabel.prototype.render = function () {
const props = this.props
const state = this.state
- console.log("editing:", state.isEditingLabel);
if (state && state.isEditingLabel) {
return h('div.editable-label', [
@@ -31,8 +30,6 @@ EditableLabel.prototype.render = function () {
} else {
return h('div.name-label', {
onClick: (event) => {
- debugger;
- console.log("event", event.target);
this.setState({ isEditingLabel: true })
},
}, this.props.children)
diff --git a/ui/classic/app/components/network.js b/ui/classic/app/components/network.js
index d5d3e18cd..698a0bbb9 100644
--- a/ui/classic/app/components/network.js
+++ b/ui/classic/app/components/network.js
@@ -39,7 +39,6 @@ Network.prototype.render = function () {
}),
h('i.fa.fa-sort-desc'),
])
-
} else if (providerName === 'mainnet') {
hoverText = 'Main Ethereum Network'
iconName = 'ethereum-network'