hotfix: Do not add Reply-To to recipients field collapsed when unfocus

(cherry picked from commit aa0c27ce1c9d7fdd579d0f25c6b7d8f4b50adf70)
This commit is contained in:
dab246
2025-10-10 15:28:23 +07:00
committed by Dat H. Pham
parent c9cb68f3ef
commit bddf29c604
4 changed files with 44 additions and 27 deletions
@@ -128,7 +128,7 @@ class ComposerView extends GetWidget<ComposerController> {
Obx(() {
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled) {
return RecipientsCollapsedComposerWidget(
listEmailAddress: controller.allListEmailAddress,
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
margin: ComposerStyle.mobileRecipientMargin,
onShowAllRecipientsAction: controller.showFullRecipients,
);
@@ -307,7 +307,7 @@ class ComposerView extends GetWidget<ComposerController> {
Obx(() {
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled) {
return RecipientsCollapsedComposerWidget(
listEmailAddress: controller.allListEmailAddress,
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
margin: ComposerStyle.mobileRecipientMargin,
onShowAllRecipientsAction: controller.showFullRecipients,
);