1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Changed custom nonce min to a number from a string

This commit is contained in:
Zachary Belford 2022-06-02 11:23:10 -07:00
parent 9ec652d0da
commit b76943ea18
No known key found for this signature in database
GPG Key ID: CC6C9E5B7B8D6059

View File

@ -417,7 +417,7 @@ export default class ConfirmTransactionBase extends Component {
<div className="custom-nonce-input">
<TextField
type="number"
min="0"
min=0
placeholder={
typeof nextNonce === 'number' ? nextNonce.toString() : null
}