From a0efd619cd856c55432c35942322c7d027588d40 Mon Sep 17 00:00:00 2001 From: Avi Alpert Date: Wed, 2 Apr 2025 16:32:01 -0400 Subject: [PATCH] fix(amazonq): export and delete icons are swapped in chat history --- packages/core/src/shared/db/chatDb/util.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, }, ]