mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 19:16:52 +01:00
wip
This commit is contained in:
parent
680d9d4495
commit
8719ded414
2 changed files with 6 additions and 1 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue