whenever i register a new account and go to the auth tab to check it out, i see that all these accounts are given the "admin" label automatically, i need that to stop, how? i dont really know.
heres the code
const handleRegister = () => {
const promReg = account.create(username.toLowerCase(), email, password, username)
promReg.then(function (response) {
console.log(`Registered!\nWelcome ${response.userId}`); // Success
databases.createDocument(processEnv.VITE_REACT_DATABASE, processEnv.VITE_REACT_USERS, ID.unique(), {
username: username,
followers: [],
about: '',
userId: username.toLowerCase(),
pfp: '',
badges: []
})
}, function (error) {
console.log(error); // Failure
});
}