chore: remove duplicate send image button (#5735)

This commit is contained in:
ggurdin 2026-02-18 09:38:37 -05:00 committed by GitHub
parent abc4a9630c
commit ba054a2557
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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<AddPopupMenuActions>(
value: AddPopupMenuActions.photoCamera,