diff --git a/web/app/components/base/chat/chat-with-history/memory/index.tsx b/web/app/components/base/chat/chat-with-history/memory/index.tsx index 20573a7f42..c3cc99bd4a 100644 --- a/web/app/components/base/chat/chat-with-history/memory/index.tsx +++ b/web/app/components/base/chat/chat-with-history/memory/index.tsx @@ -2,8 +2,10 @@ import React from 'react' import { useTranslation } from 'react-i18next' import { RiCloseLine, + RiDeleteBinLine, } from '@remixicon/react' import ActionButton from '@/app/components/base/action-button' +import Button from '@/app/components/base/button' import { useChatWithHistoryContext, } from '../context' @@ -21,17 +23,24 @@ const MemoryPanel: React.FC = ({ showChatMemory }) => { return (
-
+
{t('share.chat.memory.title')}
setShowChatMemory(false)}>
-
{/* Memory content goes here */} +
+
+ +
+
) }