aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/conf-tx.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2017-10-20 12:06:14 +0800
committerAlexander Tseung <alextsg@gmail.com>2017-10-20 12:06:14 +0800
commit5a93ec02523e8b54222cc44cba5b80dcf8f07a7a (patch)
treefc15a146111c5081fcfe8787fb12b8b66f5a2ee9 /ui/app/conf-tx.js
parent79be956be9f5297d6d601941e50d5ae4eca58560 (diff)
downloadtangerine-wallet-browser-5a93ec02523e8b54222cc44cba5b80dcf8f07a7a.tar.gz
tangerine-wallet-browser-5a93ec02523e8b54222cc44cba5b80dcf8f07a7a.tar.zst
tangerine-wallet-browser-5a93ec02523e8b54222cc44cba5b80dcf8f07a7a.zip
Fix loading animation not showing on network change
Diffstat (limited to 'ui/app/conf-tx.js')
-rw-r--r--ui/app/conf-tx.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js
index f201010fc..dfa6f88c4 100644
--- a/ui/app/conf-tx.js
+++ b/ui/app/conf-tx.js
@@ -84,7 +84,7 @@ ConfirmTxScreen.prototype.render = function () {
*/
log.info(`rendering a combined ${unconfTxList.length} unconf msg & txs`)
- if (unconfTxList.length === 0) return h(Loading, { isLoading: true })
+ if (unconfTxList.length === 0) return h(Loading)
return currentTxView({
// Properties
@@ -130,7 +130,7 @@ function currentTxView (opts) {
return h(PendingTypedMsg, opts)
}
}
- return h(Loading, { isLoading: true })
+ return h(Loading)
}
ConfirmTxScreen.prototype.buyEth = function (address, event) {