From 185052379a5da474b05df04989aed30efd7ce660 Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Tue, 14 Sep 2021 00:59:09 +0530 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 f1dcd6a..77ad963 100644 --- a/composables/useValidators.ts +++ b/composables/useValidators.ts @@ -136,7 +136,7 @@ export function useValidators() { ) { if (lt(debtParsed, minDebt) && gt(debtParsed, "0")) { - return `Min debt requirement is ${minDebt} RAI. Payback additional ${debtParsed} RAI`; + return `Minimum debt requirement is ${minDebt} RAI. Payback additional ${debtParsed} RAI`; } return null;