chore: updates

This commit is contained in:
Tristan Yang
2022-12-06 10:23:30 +08:00
parent 0c4a7a7f88
commit a74ae33e32
3 changed files with 138 additions and 72 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ export default function Reg() {
evt.preventDefault();
const { email, password, confirmPassword } = input;
if (password.length < 6) {
toast.error("Password greater than 6!");
toast.error("Password can't be less than 6 digits!");
return;
}
if (password !== confirmPassword) {