Fix: null null firstName and lastName allowed during signup

This commit is contained in:
Daniel Hougaard
2024-06-17 10:58:05 +02:00
parent df3c58bc2a
commit 8ef2501407

View File

@@ -75,7 +75,12 @@ export default function SignupInvite() {
// Verifies if the information that the users entered (name, workspace) is there, and if the password matched the criteria.
const signupErrorCheck = async () => {
setIsLoading(true);
let errorCheck = false;
let errorCheck = await checkPassword({
password,
setErrors
});
if (!firstName) {
setFirstNameError(true);
errorCheck = true;
@@ -89,11 +94,6 @@ export default function SignupInvite() {
setLastNameError(false);
}
errorCheck = await checkPassword({
password,
setErrors
});
if (!errorCheck) {
// Generate a random pair of a public and a private key
const pair = nacl.box.keyPair();