1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
This commit is contained in:
Kevin Serrano 2017-04-25 14:44:25 -07:00
parent 242dc1e99f
commit f2bf7326cc
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
2 changed files with 2 additions and 2 deletions

View File

@ -264,7 +264,7 @@ App.prototype.renderNetworkDropdown = function () {
provider: props.provider,
}),
h(DropMenuItem, {
h(DropMenuItem, {
label: 'Rinkeby Test Network',
closeMenu: () => this.setState({ isNetworkMenuOpen: false}),
action: () => props.dispatch(actions.setProviderType('rinkeby')),

View File

@ -46,7 +46,7 @@ Network.prototype.render = function () {
} else if (providerName === 'rinkeby') {
hoverText = 'Rinkeby Test Network'
iconName = 'rinkeby-test-network'
}else {
} else {
hoverText = 'Unknown Private Network'
iconName = 'unknown-private-network'
}