fix: Duplicate dialog when clearing messages (#10721)

This commit is contained in:
ABucket 2025-10-15 18:48:30 +08:00 committed by GitHub
parent b74655651d
commit c457d4a868
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -288,13 +288,7 @@ export const Topics: React.FC<Props> = ({ assistant: _assistant, activeTopic, se
label: t('chat.topics.clear.title'),
key: 'clear-messages',
icon: <BrushCleaning size={14} />,
async onClick() {
window.modal.confirm({
title: t('chat.input.clear.content'),
centered: true,
onOk: () => onClearMessages(topic)
})
}
onClick: () => onClearMessages(topic)
},
{
label: t('settings.topic.position.label'),