mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
FIX: error is a string , not an Error object.
This commit is contained in:
parent
1f94f22547
commit
3f733aecc8
1 changed files with 1 additions and 1 deletions
|
@ -486,7 +486,7 @@ const SendDetails = () => {
|
|||
if (error) {
|
||||
scrollView.current.scrollToIndex({ index });
|
||||
setIsLoading(false);
|
||||
presentAlert({ title: loc.errors.error, message: error.message });
|
||||
presentAlert({ title: loc.errors.error, message: error });
|
||||
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue