nit & changelog

This commit is contained in:
bkellam 2025-11-27 16:55:30 -08:00
parent 64e6350473
commit 95c12a1102
3 changed files with 2 additions and 2 deletions

View file

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### 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 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 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 ## [4.10.0] - 2025-11-24

View file

@ -210,7 +210,6 @@ export const ChatThread = ({
} }
timeout = setTimeout(() => { timeout = setTimeout(() => {
console.log(`scrollOffset: ${scrollOffset}`);
history.replaceState( history.replaceState(
{ {
scrollOffset, scrollOffset,

View file

@ -25,7 +25,7 @@ interface ChatThreadListItemProps {
index: number; index: number;
} }
export const ChatThreadListItemComponent = forwardRef<HTMLDivElement, ChatThreadListItemProps>(({ const ChatThreadListItemComponent = forwardRef<HTMLDivElement, ChatThreadListItemProps>(({
userMessage, userMessage,
assistantMessage: _assistantMessage, assistantMessage: _assistantMessage,
isStreaming, isStreaming,