registration link correction

This commit is contained in:
realaravinth
2021-04-09 15:03:50 +05:30
parent 0496c0bdaf
commit 646a92b28f
6 changed files with 263 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ const registerUser = async e => {
let email = document.getElementById('email').value;
isBlankString(e, email, 'email');
let exists = await checkUsernameExists();
let exists = await userExists();
if (exists) {
return;
}