File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
apps/array/src/renderer/features/sessions/components Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ export function ConversationView({
5656 const scrollRef = useRef < HTMLDivElement > ( null ) ;
5757 const items = useMemo ( ( ) => buildConversationItems ( events ) , [ events ] ) ;
5858 const lastTurn = items . filter ( ( i ) : i is Turn => i . type === "turn" ) . pop ( ) ;
59- const lastTurnComplete = lastTurn ?. isComplete ?? true ;
6059
6160 // Scroll to bottom on initial mount
6261 const hasScrolledRef = useRef ( false ) ;
@@ -89,7 +88,7 @@ export function ConversationView({
8988 ) }
9089 </ div >
9190 < SessionFooter
92- isPromptPending = { isPromptPending || ! lastTurnComplete }
91+ isPromptPending = { isPromptPending }
9392 lastGenerationDuration = {
9493 lastTurn ?. isComplete ? lastTurn . durationMs : null
9594 }
You can’t perform that action at this time.
0 commit comments