1
0
Fork 0
mirror of synced 2024-05-17 10:53:15 +12:00

Fix logout race condition

This commit is contained in:
Rory Powell 2022-11-11 11:26:36 +00:00
parent 5b8c49cf3a
commit fbbc5f01b8

View file

@ -155,9 +155,9 @@ export function createAuthStore() {
await actions.getSelf()
},
logout: async () => {
setUser(null)
setPostLogout()
await API.logOut()
setPostLogout()
setUser(null)
await setInitInfo({})
},
updateSelf: async fields => {