mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 19:16:52 +01:00
FIX: Error on send would not scroll to recipient
This commit is contained in:
parent
d338f813cb
commit
2c68583495
1 changed files with 2 additions and 1 deletions
|
@ -524,7 +524,8 @@ const SendDetails = () => {
|
|||
}
|
||||
|
||||
if (error) {
|
||||
scrollView.current?.scrollToIndex({ index });
|
||||
// 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 });
|
||||
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
|
||||
|
|
Loading…
Add table
Reference in a new issue