fix: remove needless tui event publish on session delete

thinking-toggle-wip
Aiden Cline 2025-12-17 11:06:34 -06:00
parent 91d1b65920
commit c7a7fced41
1 changed files with 0 additions and 3 deletions

View File

@ -779,9 +779,6 @@ export namespace Server {
async (c) => {
const sessionID = c.req.valid("param").sessionID
await Session.remove(sessionID)
await Bus.publish(TuiEvent.CommandExecute, {
command: "session.list",
})
return c.json(true)
},
)