Skip to content

Commit

Permalink
Fix lint error (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubens authored Dec 2, 2024
1 parent 776b782 commit 490a84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webview-ui/src/components/chat/ChatView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
}
// Update previous value
setWasStreaming(isStreaming)
}, [isStreaming, lastMessage])
}, [isStreaming, lastMessage, wasStreaming])

const isBrowserSessionMessage = (message: ClineMessage): boolean => {
// which of visible messages are browser session messages, see above
Expand Down

0 comments on commit 490a84e

Please sign in to comment.