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 archiving a session in WebUI sidebar, the session briefly disappears then reappears (~100ms later).
Possible Cause
The session.archive API may trigger a session.updated SSE event before archive completes. The optimistic update removes the session, but then the stale event re-adds it.
Suggestion
Use the same logic as TUI - call session.delete API instead, which sends a session.deleted event and avoids confusion with update events.