This commit is contained in:
Marcos Rodriguez Velez 2025-02-19 09:11:01 -04:00
parent 680d9d4495
commit 8719ded414
2 changed files with 6 additions and 1 deletions

View file

@ -136,6 +136,7 @@
"details_add_recc_rem_all_alert_description": "Are you sure you want to remove all recipients?",
"details_add_rec_rem_all": "Remove All Recipients",
"details_recipients_title": "Recipients",
"details_recipient_title": "Recipient #{number} of #{total}",
"details_address": "Address",
"details_address_field_is_not_valid": "The address is not valid.",
"details_adv_fee_bump": "Allow Fee Bump",

View file

@ -530,7 +530,11 @@ const SendDetails = () => {
// Scroll to the recipient that caused the error with animation
scrollView.current?.scrollToIndex({ index, animated: true });
setIsLoading(false);
presentAlert({ title: loc.errors.error, message: error });
presentAlert({
title:
addresses.length > 1 ? loc.formatString(loc.send.details_recipient_title, { number: index + 1, total: addresses.length }) : '',
message: error,
});
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
return;
}