@rationalbloks/frontblok-components 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -77
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -735,8 +735,8 @@ const AuthView = ({
|
|
|
735
735
|
setLocalError("Passwords do not match");
|
|
736
736
|
return false;
|
|
737
737
|
}
|
|
738
|
-
if (formData.password.length <
|
|
739
|
-
setLocalError("Password must be at least
|
|
738
|
+
if (formData.password.length < 8) {
|
|
739
|
+
setLocalError("Password must be at least 8 characters");
|
|
740
740
|
return false;
|
|
741
741
|
}
|
|
742
742
|
}
|