mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
FIX: Haptic
This commit is contained in:
parent
92067e8478
commit
62131a9354
2 changed files with 1 additions and 3 deletions
|
@ -167,7 +167,7 @@ const Confirm = () => {
|
|||
}
|
||||
|
||||
amount = formatBalanceWithoutSuffix(amount, BitcoinUnit.BTC, false);
|
||||
|
||||
ReactNativeHapticFeedback.trigger('notificationSuccess', { ignoreAndroidSystemSettings: false });
|
||||
navigate('Success', {
|
||||
fee: Number(fee),
|
||||
amount,
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import React, { useEffect, useRef } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import LottieView from 'lottie-react-native';
|
||||
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
||||
import { View, StyleSheet, SafeAreaView } from 'react-native';
|
||||
import { Text } from 'react-native-elements';
|
||||
import BigNumber from 'bignumber.js';
|
||||
|
@ -31,7 +30,6 @@ const Success = () => {
|
|||
});
|
||||
useEffect(() => {
|
||||
console.log('send/success - useEffect');
|
||||
ReactNativeHapticFeedback.trigger('notificationSuccess', { ignoreAndroidSystemSettings: false });
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, []);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue