aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-11-21 02:54:05 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-21 03:42:46 +0800
commit28409294c3cd70ddbc9a9f3467d402c89e110261 (patch)
tree9073d004f55a9c72b96be405c366abdfcaff853b /ui/app/components
parentc6713e93adcaeeba1ec559d44135bb62c76d2538 (diff)
downloadtangerine-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
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/customize-gas-modal/index.js2
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.',
}),