@rationalbloks/frontblok-components 0.2.3 → 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.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -733,8 +733,8 @@ const AuthView = ({
|
|
|
733
733
|
setLocalError("Passwords do not match");
|
|
734
734
|
return false;
|
|
735
735
|
}
|
|
736
|
-
if (formData.password.length <
|
|
737
|
-
setLocalError("Password must be at least
|
|
736
|
+
if (formData.password.length < 8) {
|
|
737
|
+
setLocalError("Password must be at least 8 characters");
|
|
738
738
|
return false;
|
|
739
739
|
}
|
|
740
740
|
}
|