mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 11:09:20 +01:00
Merge pull request #6304 from BlueWallet/error
FIX: error is a string , not an Error object.
This commit is contained in:
commit
b051374a1a
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