1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Remove unneeded type casting

This commit is contained in:
Dan Finlay 2017-11-20 10:54:05 -08:00 committed by Chi Kei Chan
parent c6713e93ad
commit 28409294c3

View File

@ -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.',
}),