Issue
This Content is from Stack Overflow. Question asked by Cheesus
When this function is called the app’s context should be updated and then the user redirected, however navigate("/")
is never called. Is it because appState.setUser(user)
triggers some kind of refresh ? If so how can i fix this ?
Here’s the relevant code :
const appState = useContext(AppStateContext);
function register() {
APIFetcher.register(name, email, role, password)
.then((user) => {
appState.setUser(user)
navigate("/")
})
.catch((error) => {
console.log(error)
})
}
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.