Fixed an error message

This commit is contained in:
2021-03-12 16:06:55 +11:00
parent f9df2722e8
commit b78b034d6d
+1 -1
View File
@@ -78,7 +78,7 @@ const handleSubmit = async (email, username, password, retype, contact) => {
const err = handleValidation(email, username, password, retype); const err = handleValidation(email, username, password, retype);
if (err) { if (err) {
return err; return [err];
} }
//send to the auth server //send to the auth server