diff --git a/CHANGELOG.md b/CHANGELOG.md index 50e8ccf8..fcb0cf8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed issue where single quotes could not be used in search queries. [#629](https://github.com/sourcebot-dev/sourcebot/pull/629) - Fixed issue where files with special characters would fail to load. [#636](https://github.com/sourcebot-dev/sourcebot/issues/636) +- Fixed Ask performance issues. [#632](https://github.com/sourcebot-dev/sourcebot/pull/632) ## [4.10.0] - 2025-11-24 diff --git a/packages/web/src/features/chat/components/chatThread/chatThread.tsx b/packages/web/src/features/chat/components/chatThread/chatThread.tsx index 6a7995ba..b6c7cbf8 100644 --- a/packages/web/src/features/chat/components/chatThread/chatThread.tsx +++ b/packages/web/src/features/chat/components/chatThread/chatThread.tsx @@ -210,7 +210,6 @@ export const ChatThread = ({ } timeout = setTimeout(() => { - console.log(`scrollOffset: ${scrollOffset}`); history.replaceState( { scrollOffset, diff --git a/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx b/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx index ae3d5c84..c1bf508c 100644 --- a/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx +++ b/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx @@ -25,7 +25,7 @@ interface ChatThreadListItemProps { index: number; } -export const ChatThreadListItemComponent = forwardRef(({ +const ChatThreadListItemComponent = forwardRef(({ userMessage, assistantMessage: _assistantMessage, isStreaming,