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

This commit is contained in:
2026-08-22 22:29:44 -05:00
parent 4513741fec
commit 14409c5125
+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)