Set inclusive false for minValue validator in sendfunds form (#1193)
This commit is contained in:
parent
81c14133ac
commit
24dffd53da
|
@ -240,7 +240,7 @@ const SendFunds = ({ initialValues, onClose, onNext, recipientAddress, selectedT
|
|||
validate={composeValidators(
|
||||
required,
|
||||
mustBeFloat,
|
||||
minValue(0),
|
||||
minValue(0, false),
|
||||
maxValue(selectedTokenRecord?.balance),
|
||||
)}
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue