From 8201a8c3ee42bad55855453ea303dff659c6ed83 Mon Sep 17 00:00:00 2001 From: prjanitor Date: Mon, 6 Apr 2026 22:04:16 +0300 Subject: [PATCH] fix: correct typo in minLength translation key --- src/checkError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkError.ts b/src/checkError.ts index d76f59a..87b1772 100644 --- a/src/checkError.ts +++ b/src/checkError.ts @@ -27,7 +27,7 @@ export default function checkError>( } else if (h.minLength !== undefined && `${v}`.length < h.minLength) { err = getTranslation( locale, - 'lengtShouldBeLongerThan' + 'lengthShouldBeLongerThan' )({ fieldKey: k, label: h?.label,