diff options
author | Dan <danjm.com@gmail.com> | 2018-03-09 21:30:37 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-09 21:30:37 +0800 |
commit | c1ff927fa0e129a828d3345b21723300d5e73ef1 (patch) | |
tree | bb80e83b89bb0324d8bf8942d3765a165c7c476f /ui/app | |
parent | 81e72147ef829acbbed85bced7f0eb4533f2fb17 (diff) | |
download | tangerine-wallet-browser-c1ff927fa0e129a828d3345b21723300d5e73ef1.tar.gz tangerine-wallet-browser-c1ff927fa0e129a828d3345b21723300d5e73ef1.tar.zst tangerine-wallet-browser-c1ff927fa0e129a828d3345b21723300d5e73ef1.zip |
Lint fixes.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/actions.js | 2 | ||||
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-ether.js | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js index 200946753..d6f509590 100644 --- a/ui/app/actions.js +++ b/ui/app/actions.js @@ -1271,7 +1271,7 @@ function retryTransaction (txId) { return dispatch(actions.displayWarning(err.message)) } const { selectedAddressTxList } = newState - const { id: newTxId } = selectedAddressTxList[selectedAddressTxList.length - 1] + const { id: newTxId } = selectedAddressTxList[selectedAddressTxList.length - 1] dispatch(actions.updateMetamaskState(newState)) dispatch(actions.viewPendingTx(newTxId)) }) diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js index 422b1c6c1..ec61d66b4 100644 --- a/ui/app/components/pending-tx/confirm-send-ether.js +++ b/ui/app/components/pending-tx/confirm-send-ether.js @@ -233,8 +233,6 @@ ConfirmSendEther.prototype.render = function () { name: toName, }, memo, - gasFeeInFIAT, - gasFeeInETH, gasFeeInHex, amountInFIAT, totalInFIAT, |