You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When clicking on the profile icon we instantly send HTTP request that triggers a PARTICIPANT_UPDATED event even though nothing happened
2025-11-10.16-34-01.mp4
The issue seem to be a frontend problem. When removing line 42 in AvatarSettings.tsx
dispatch(
editSelf({
auth: {...self, avatar: properties},
applyOptimistically: true,
})
);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [properties]);```
the issue is no longer present but i am also not able to change the profile avatar anymore
### Browser
firefox
### Steps to reproduce the behavior
_No response_
### Screenshots
_No response_
### Additional context
_No response_
The problem
When clicking on the profile icon we instantly send HTTP request that triggers a PARTICIPANT_UPDATED event even though nothing happened
2025-11-10.16-34-01.mp4
The issue seem to be a frontend problem. When removing line 42 in AvatarSettings.tsx