From ba054a25579ca61ae098f294aafb27ed78de8bed Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Wed, 18 Feb 2026 09:38:37 -0500 Subject: [PATCH] chore: remove duplicate send image button (#5735) --- .../chat/widgets/pangea_chat_input_row.dart | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lib/pangea/chat/widgets/pangea_chat_input_row.dart b/lib/pangea/chat/widgets/pangea_chat_input_row.dart index c7559d1f4..a5a7ec8f5 100644 --- a/lib/pangea/chat/widgets/pangea_chat_input_row.dart +++ b/lib/pangea/chat/widgets/pangea_chat_input_row.dart @@ -133,25 +133,6 @@ class PangeaChatInputRow extends StatelessWidget { contentPadding: const EdgeInsets.all(0), ), ), - if (!isBotDM) - PopupMenuItem( - value: AddPopupMenuActions.image, - child: ListTile( - leading: CircleAvatar( - backgroundColor: theme - .colorScheme - .onPrimaryContainer, - foregroundColor: theme - .colorScheme - .primaryContainer, - child: const Icon( - Icons.photo_outlined, - ), - ), - title: Text(L10n.of(context).sendImage), - contentPadding: const EdgeInsets.all(0), - ), - ), if (PlatformInfos.isMobile) PopupMenuItem( value: AddPopupMenuActions.photoCamera,