Skip to content

Commit

Permalink
remove unnecessary console
Browse files Browse the repository at this point in the history
  • Loading branch information
glowingjade committed Oct 14, 2024
1 parent 1621dfc commit 0bafb52
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/hooks/useChatHistory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export function useChatHistory() {
() =>
debounce(
async (id: string, messages: ChatMessage[]): Promise<void> => {
console.log('createOrUpdateConversation', id, messages)
const conversation =
(await chatConversationManager.findChatConversation(id)) ??
(await chatConversationManager.createChatConversation(id))
Expand Down

0 comments on commit 0bafb52

Please sign in to comment.