diff --git a/ee/tabby-ui/app/files/components/chat-side-bar.tsx b/ee/tabby-ui/app/files/components/chat-side-bar.tsx index bd6ad4345513..9540ad23e369 100644 --- a/ee/tabby-ui/app/files/components/chat-side-bar.tsx +++ b/ee/tabby-ui/app/files/components/chat-side-bar.tsx @@ -80,7 +80,7 @@ export const ChatSideBar: React.FC = ({ onLoaded() {}, onCopy(_content) {}, onKeyboardEvent() {}, - onNavigateSymbol(_filepath, _keywords) {}, + onNavigateSymbol(_filepath, _keywords) {} }) const getPrompt = ({ action }: QuickActionEventPayload) => { diff --git a/ee/tabby-ui/components/chat/chat.tsx b/ee/tabby-ui/components/chat/chat.tsx index 4c248444d05f..4d14af743a48 100644 --- a/ee/tabby-ui/components/chat/chat.tsx +++ b/ee/tabby-ui/components/chat/chat.tsx @@ -1,11 +1,6 @@ import React, { RefObject } from 'react' import { compact, findIndex, isEqual, some, uniqWith } from 'lodash-es' -import type { - Context, - FileContext, - NavigateOpts, - SymbolInfo -} from 'tabby-chat-panel' +import type { Context, FileContext, NavigateOpts } from 'tabby-chat-panel' import { ERROR_CODE_NOT_FOUND } from '@/lib/constants' import { @@ -37,6 +32,7 @@ import { EmptyScreen } from './empty-screen' import { QuestionAnswerList } from './question-answer' type ChatContextValue = { + threadId: string | undefined isLoading: boolean qaPairs: QuestionAnswerPair[] handleMessageAction: ( @@ -529,6 +525,7 @@ function ChatRenderer( return (