1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Use correct loading message when connecting to Kovan (#5189)

* Use correct loading message when connecting to Kovan

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md
This commit is contained in:
Eugene Marinelli 2018-09-06 07:50:55 -07:00 committed by Whymarrh Whitby
parent dc2431fe62
commit d27332955c
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Current Develop Branch
- [#4606](https://github.com/MetaMask/metamask-extension/pull/4606): Add new metamask_watchAsset method.
- [#5189](https://github.com/MetaMask/metamask-extension/pull/5189): Fix bug where Ropsten loading message is shown when connecting to Kovan.
## 4.9.3 Wed Aug 15 2018

View File

@ -188,7 +188,7 @@ class App extends Component {
} else if (providerName === 'ropsten') {
name = this.context.t('connectingToRopsten')
} else if (providerName === 'kovan') {
name = this.context.t('connectingToRopsten')
name = this.context.t('connectingToKovan')
} else if (providerName === 'rinkeby') {
name = this.context.t('connectingToRinkeby')
} else {