Fix authorize race condition by not updating the user on token refresh #4567

This commit is contained in:
advplyr 2025-08-13 08:31:01 -05:00
parent fb3834156b
commit 2c45b28d48
4 changed files with 5 additions and 6 deletions

View file

@ -152,7 +152,6 @@ export const actions = {
.$post('/auth/refresh')
.then(async (response) => {
const newAccessToken = response.user.accessToken
commit('setUser', response.user)
commit('setAccessToken', newAccessToken)
// Emit event used to re-authenticate socket in default.vue since $root is not available here
if (this.$eventBus) {