Logout working

This commit is contained in:
2021-01-25 19:34:06 +11:00
parent 3ccddaec0f
commit 8c754b4570
5 changed files with 34 additions and 4 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ const LogIn = props => {
handleSubmit(emailElement.value, passwordElement.value)
.then(res => res ? alert(res) : null)
.then(() => emailElement.value = passwordElement.value = '') //clear input
.then(() => props.history.push('/'))
.then(() => { window.location.reload(true); }) //BUFGIX: force reload of the header element
.catch(e => console.error(e))
;
}