There was an error while loading. Please reload this page.
1 parent 3e519ff commit 93f82e0Copy full SHA for 93f82e0
1 file changed
apps/array/src/renderer/features/sessions/components/ConversationView.tsx
@@ -56,7 +56,6 @@ export function ConversationView({
56
const scrollRef = useRef<HTMLDivElement>(null);
57
const items = useMemo(() => buildConversationItems(events), [events]);
58
const lastTurn = items.filter((i): i is Turn => i.type === "turn").pop();
59
- const lastTurnComplete = lastTurn?.isComplete ?? true;
60
61
// Scroll to bottom on initial mount
62
const hasScrolledRef = useRef(false);
@@ -89,7 +88,7 @@ export function ConversationView({
89
88
)}
90
</div>
91
<SessionFooter
92
- isPromptPending={isPromptPending || !lastTurnComplete}
+ isPromptPending={isPromptPending}
93
lastGenerationDuration={
94
lastTurn?.isComplete ? lastTurn.durationMs : null
95
}
0 commit comments