diff options
author | Eugene Marinelli <eugeneiiim@gmail.com> | 2018-09-06 22:50:55 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-06 22:50:55 +0800 |
commit | d27332955c19aa5db968fe78ed3f3af85c254e50 (patch) | |
tree | f7b3293984a2b56d0c207fd55bc5e8efd60c00f2 /ui/app/app.js | |
parent | dc2431fe62bc7e50ebbf864389e9590f29d2136f (diff) | |
download | dexon-wallet-d27332955c19aa5db968fe78ed3f3af85c254e50.tar.gz dexon-wallet-d27332955c19aa5db968fe78ed3f3af85c254e50.tar.zst dexon-wallet-d27332955c19aa5db968fe78ed3f3af85c254e50.zip |
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
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index aa051280..c93f93e7 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -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 { |