onboarding username password bug preventing multi user signup

This commit is contained in:
timothycarambat 2023-10-24 17:23:12 -07:00
parent 9b9644e931
commit f6ae992c32

View file

@ -36,7 +36,7 @@ function MultiUserSetup({ nextStep, prevStep }) {
nextStep();
};
const setNewUsername = (e) => setPassword(e.target.value);
const setNewUsername = (e) => setUsername(e.target.value);
const setNewPassword = (e) => setPassword(e.target.value);
const handleUsernameChange = debounce(setNewUsername, 500);
const handlePasswordChange = debounce(setNewPassword, 500);