From f4d68457dd4d23e59efd4391f9489e75040b0461 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto Date: Fri, 2 Feb 2024 10:47:48 -0300 Subject: [PATCH] minor tweak --- app/views/UserNotificationPreferencesView/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/UserNotificationPreferencesView/index.tsx b/app/views/UserNotificationPreferencesView/index.tsx index 76a97e050..35bcda245 100644 --- a/app/views/UserNotificationPreferencesView/index.tsx +++ b/app/views/UserNotificationPreferencesView/index.tsx @@ -77,7 +77,8 @@ const UserNotificationPreferencesView = () => { } else { navigation.navigate('PushTroubleshootView'); } - + }; + const toggleInAppVibration = () => { setInAppVibration(!inAppVibration); };