diff --git a/packages/core/src/shared/db/chatDb/util.ts b/packages/core/src/shared/db/chatDb/util.ts index a176db4ff40..5a7bd5e23c1 100644 --- a/packages/core/src/shared/db/chatDb/util.ts +++ b/packages/core/src/shared/db/chatDb/util.ts @@ -193,12 +193,12 @@ export function groupTabsByDate(tabs: Tab[]): DetailedListItemGroup[] { const getConversationActions = (historyId: string): ChatItemButton[] => [ { text: 'Export', - icon: 'trash' as MynahIconsType, + icon: 'external' as MynahIconsType, id: historyId, }, { text: 'Delete', - icon: 'external' as MynahIconsType, + icon: 'trash' as MynahIconsType, id: historyId, }, ]