From 4d8562628e06ad26346c2ec4cf525795d01900e0 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto Date: Wed, 10 Jan 2024 21:32:36 -0300 Subject: [PATCH] remove haptic from inappnotification --- app/containers/InAppNotification/index.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/app/containers/InAppNotification/index.tsx b/app/containers/InAppNotification/index.tsx index f33e05a2b..8337f8f3c 100644 --- a/app/containers/InAppNotification/index.tsx +++ b/app/containers/InAppNotification/index.tsx @@ -1,14 +1,11 @@ import React, { ElementType, memo, useEffect } from 'react'; import { Easing, Notifier, NotifierRoot } from 'react-native-notifier'; -import * as Haptics from 'expo-haptics'; import NotifierComponent, { INotifierComponent } from './NotifierComponent'; import EventEmitter from '../../lib/methods/helpers/events'; import Navigation from '../../lib/navigation/appNavigation'; import { getActiveRoute } from '../../lib/methods/helpers/navigation'; import { useAppSelector } from '../../lib/hooks'; -import userPreferences from '../../lib/methods/userPreferences'; -import { NOTIFICATION_IN_APP_VIBRATION } from '../../lib/constants'; export const INAPP_NOTIFICATION_EMITTER = 'NotificationInApp'; @@ -33,15 +30,7 @@ const InAppNotification = memo(() => { const state = Navigation.navigationRef.current?.getRootState(); const route = getActiveRoute(state); if (payload?.rid || notification.customNotification) { - if (route?.name === 'JitsiMeetView' || payload?.message?.t === 'videoconf') return; - - if (payload?.rid === subscribedRoom) { - const notificationInAppVibration = userPreferences.getBool(NOTIFICATION_IN_APP_VIBRATION); - if (notificationInAppVibration || notificationInAppVibration === null) { - Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success); - } - return; - } + if (payload?.rid === subscribedRoom || route?.name === 'JitsiMeetView' || payload?.message?.t === 'videoconf') return; Notifier.showNotification({ showEasing: Easing.inOut(Easing.quad),