You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @ShaughnAnderson94,
I'm excited to contribute to open source for the first time and this bug seems like a great starting point. I'm having trouble locating the code related to the username in the specified file. Any guidance would be greatly appreciated!
function ChooseName() {
const [name, setName] = useState("");
function updateName(event) {
event.preventDefault();
setName(event.target.username.value);
}
return (
Update name
Your name is: {username} //Should be name instead of username
);
}
The text was updated successfully, but these errors were encountered: