Update useValidators.ts

This commit is contained in:
Georges KABBOUCHI 2021-08-05 20:51:26 +03:00
parent 067544d391
commit 7d9154ae73

View File

@ -7,7 +7,7 @@ export function useValidators() {
function validateAmount(amountParsed, balance = null, options = null) {
const mergedOptions = Object.assign(
{ msg: "Your amount exceeds your balance." },
{ msg: "Your amount exceeds your maximum limit." },
options
);