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
This commit is contained in:
parent
854f3082c6
commit
ca75e2407b
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue