Remove unneeded type casting

feature/default_network_editable
Dan Finlay 7 years ago committed by Chi Kei Chan
parent c6713e93ad
commit 28409294c3
  1. 2
      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.',
}),

Loading…
Cancel
Save