fix(neuron): stale mode reference in TUI refresh loop

This commit is contained in:
2026-08-22 22:29:44 -05:00
parent 581220b718
commit 58dbe334d3
+1 -1
View File
@@ -230,5 +230,5 @@ async function loadConversations() {
await loadConversations()
render(state)
setInterval(async () => {
if (mode === "chat") await refreshTranscript()
if (state.mode === "chat") await refreshTranscript()
}, 1000)