From 6c4764514f95ae5916ff90538d7d722e6956e464 Mon Sep 17 00:00:00 2001 From: Viduni Wickramarachchi Date: Thu, 24 Oct 2024 15:47:50 -0400 Subject: [PATCH] [Obs AI Assistant] Fix error opening old conversation when navigated from contextual insights --- x-pack/packages/kbn-ai-assistant/src/chat/chat_body.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/packages/kbn-ai-assistant/src/chat/chat_body.tsx b/x-pack/packages/kbn-ai-assistant/src/chat/chat_body.tsx index 12cb747d148c4..e1cf3fa83f4bc 100644 --- a/x-pack/packages/kbn-ai-assistant/src/chat/chat_body.tsx +++ b/x-pack/packages/kbn-ai-assistant/src/chat/chat_body.tsx @@ -136,7 +136,7 @@ export function ChatBody({ const { conversation, messages, next, state, stop, saveTitle } = useConversation({ initialConversationId, - initialMessages, + ...(!initialConversationId ? { initialMessages } : {}), initialTitle, chatService, connectorId: connectors.selectedConnector,