diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-11-21 02:54:05 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-11-21 03:42:46 +0800 |
commit | 28409294c3cd70ddbc9a9f3467d402c89e110261 (patch) | |
tree | 9073d004f55a9c72b96be405c366abdfcaff853b | |
parent | c6713e93adcaeeba1ec559d44135bb62c76d2538 (diff) | |
download | tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar.gz tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar.bz2 tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar.lz tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar.xz tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.tar.zst tangerine-wallet-browser-28409294c3cd70ddbc9a9f3467d402c89e110261.zip |
Remove unneeded type casting
-rw-r--r-- | ui/app/components/customize-gas-modal/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/customize-gas-modal/index.js b/ui/app/components/customize-gas-modal/index.js index 6d27702e8..485dacf90 100644 --- a/ui/app/components/customize-gas-modal/index.js +++ b/ui/app/components/customize-gas-modal/index.js @@ -244,7 +244,7 @@ CustomizeGasModal.prototype.render = function () { min: 1, // max: 100000, step: 1, - onChange: value => this.convertAndSetGasLimit(String(value)), + onChange: value => this.convertAndSetGasLimit(value), title: 'Gas Limit', copy: 'We calculate the suggested gas limit based on network success rates.', }), |