fix(tui): keep queued sends in queue UI

This commit is contained in:
Brooklyn Nicholson
2026-04-26 04:49:56 -05:00
parent 5ac4088856
commit 7143d22a83
2 changed files with 11 additions and 8 deletions

View File

@@ -395,6 +395,7 @@ export function useMainApp(gw: GatewayClient) {
const next = composerActions.dequeue()
if (next) {
patchUiState({ busy: true, status: 'running…' })
sendQueued(next)
}
}, [ui.sid, ui.busy, composerActions, composerRefs, sendQueued])