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;