Fix `conversionRate` PropType of `GasModalPageContainer` (#9651)

The `conversionRate` prop of `GasModalPageContainer` was updated
recently in PR #9623 to have a PropType of `string` instead of
`number`. This resulted in a PropType error whenever this modal was
rendered, as `conversionRate` is always a `number`.

The PropType has been reverted to the correct type, `number`.
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent 4197ff7295
commit a9a432db0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/components/app/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js

@ -53,7 +53,7 @@ export default class GasModalPageContainer extends Component {
customTotalSupplement: PropTypes.string, customTotalSupplement: PropTypes.string,
isSwap: PropTypes.bool, isSwap: PropTypes.bool,
value: PropTypes.string, value: PropTypes.string,
conversionRate: PropTypes.string, conversionRate: PropTypes.number,
minimumGasLimit: PropTypes.number.isRequired, minimumGasLimit: PropTypes.number.isRequired,
} }

Loading…
Cancel
Save