File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
packages/web/src/features/chat/components/chatThread Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313### Fixed
1414- Fixed issue where single quotes could not be used in search queries. [ #629 ] ( https://github.com/sourcebot-dev/sourcebot/pull/629 )
1515- Fixed issue where files with special characters would fail to load. [ #636 ] ( https://github.com/sourcebot-dev/sourcebot/issues/636 )
16+ - Fixed Ask performance issues. [ #632 ] ( https://github.com/sourcebot-dev/sourcebot/pull/632 )
1617
1718## [ 4.10.0] - 2025-11-24
1819
Original file line number Diff line number Diff line change @@ -210,7 +210,6 @@ export const ChatThread = ({
210210 }
211211
212212 timeout = setTimeout ( ( ) => {
213- console . log ( `scrollOffset: ${ scrollOffset } ` ) ;
214213 history . replaceState (
215214 {
216215 scrollOffset,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ interface ChatThreadListItemProps {
2525 index : number ;
2626}
2727
28- export const ChatThreadListItemComponent = forwardRef < HTMLDivElement , ChatThreadListItemProps > ( ( {
28+ const ChatThreadListItemComponent = forwardRef < HTMLDivElement , ChatThreadListItemProps > ( ( {
2929 userMessage,
3030 assistantMessage : _assistantMessage ,
3131 isStreaming,
You can’t perform that action at this time.
0 commit comments