From 9772cd44cf5e8a0887ad85f934e26e3d3d4f8d48 Mon Sep 17 00:00:00 2001 From: Stanislas Polu Date: Sat, 28 Dec 2024 18:26:53 +0100 Subject: [PATCH] hotfix: delete conversation --- front/lib/api/assistant/conversation/destroy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/front/lib/api/assistant/conversation/destroy.ts b/front/lib/api/assistant/conversation/destroy.ts index 8679b4c80b3c..db9ee8ddff22 100644 --- a/front/lib/api/assistant/conversation/destroy.ts +++ b/front/lib/api/assistant/conversation/destroy.ts @@ -137,7 +137,8 @@ async function destroyConversationDataSource({ const auth = await Authenticator.internalAdminForWorkspace(workspaceId); const conversation = await getConversationWithoutContent( auth, - conversationId + conversationId, + true ); if (conversation.isErr()) { throw conversation.error;