react-auth-box
react-auth-box copied to clipboard
Remove event.preventDefault call
trafficstars
Problem:
The onProfileFormSubmit function makes a redundant call to event.preventDefault()
- event.preventDefault is already called inside handleFormSubmit (src/user/ui/ProfileForm.js)
- event is never passed from the function which causes an error when trying to update the user name
Solution: removed the redundant event.preventDefault call