Skip to content

Commit 95c12a1

Browse files
nit & changelog
1 parent 64e6350 commit 95c12a1

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

packages/web/src/features/chat/components/chatThread/chatThread.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)