From ca75e2407b415c21d5c05ac6008a4ac970ec3eed Mon Sep 17 00:00:00 2001 From: CJ <38697367+imisshtml@users.noreply.github.com> Date: Tue, 15 Oct 2019 03:32:10 -0400 Subject: [PATCH] MM-19286 Disable Haptic Feedback (#3402) * MM-19286 Disable Haptic Feedback Added a check for iOS version <=9 and for iPhones 5/6/SE versions that don't support haptic feedback. * MM-19286 Fixed the Fix Misread the repo for the haptic feedback so fixing the fix. * MM-19286 Removed line in device.js Removed line in device.js --- app/utils/general.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/general.js b/app/utils/general.js index 4352bec08..6365e9380 100644 --- a/app/utils/general.js +++ b/app/utils/general.js @@ -52,7 +52,7 @@ export function emptyFunction() { // eslint-disable-line no-empty-function export function hapticFeedback(method = 'impactLight') { ReactNativeHapticFeedback.trigger(method, { - enableVibrateFallback: true, + enableVibrateFallback: false, ignoreAndroidSystemSettings: false, }); }