Skip to content

Commit 3b85cb4

Browse files
committed
refactor(chat): remove unused log
1 parent f98caa3 commit 3b85cb4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ee/tabby-ui/components/chat/question-answer.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,7 @@ function UserMessageCard(props: { message: UserMessage }) {
142142
}
143143

144144
const processedContent = useMemo(() => {
145-
const afterConvert = convertContextBlockToPlaceholder(message.content)
146-
console.log('afterConvert', afterConvert)
147-
return afterConvert
145+
return convertContextBlockToPlaceholder(message.content)
148146
}, [message.content])
149147

150148
return (

0 commit comments

Comments
 (0)