Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/web/src/domains/chat/components/chat-route-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { usePullRefresh } from "@/domains/chat/hooks/use-pull-refresh";
import { useRefreshLatestMessages as _useRefreshLatestMessages } from "@/domains/chat/hooks/use-refresh-latest-messages";
import { useConversationStarters } from "@/domains/chat/hooks/use-conversation-starters";
import type { TranscriptHandle, TranscriptProps } from "@/domains/chat/transcript/transcript";
import { useDeprecatedTranscriptScroll } from "@/domains/chat/transcript/use-deprecated-transcript-scroll";
import { useTranscriptScroll } from "@/domains/chat/transcript/use-transcript-scroll";
import { hasPendingAssistantResponse } from "@/domains/chat/utils/chat-utils";
import type { ChatError } from "@/domains/chat/types";
import type { AssistantState } from "@/domains/chat/hooks/use-assistant-lifecycle";
Expand Down Expand Up @@ -857,7 +857,7 @@ export function ChatRouteContent({
// Scroll coordination
// -------------------------------------------------------------------------

const scrollCoordinator = useDeprecatedTranscriptScroll({
const scrollCoordinator = useTranscriptScroll({
transcriptRef: refs.transcriptRef,
items: transcriptItems,
conversationId: activeConversationId,
Expand Down
79 changes: 0 additions & 79 deletions apps/web/src/domains/chat/transcript/transcript-scroll-flag.ts

This file was deleted.

215 changes: 0 additions & 215 deletions apps/web/src/domains/chat/transcript/transcript-scroll.test.ts

This file was deleted.

Loading