From 7d9154ae7380cf90872a2a2cf6fc2493ef0cf0d4 Mon Sep 17 00:00:00 2001 From: Georges KABBOUCHI Date: Thu, 5 Aug 2021 20:51:26 +0300 Subject: [PATCH] Update useValidators.ts --- composables/useValidators.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composables/useValidators.ts b/composables/useValidators.ts index 4255bc1..485cc4d 100644 --- a/composables/useValidators.ts +++ b/composables/useValidators.ts @@ -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 );