From 8f857ef11ac50d526dcf64b932f376d37943aa7a Mon Sep 17 00:00:00 2001 From: Bryce McMath <32586431+bryce-mcmath@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:33:52 -0700 Subject: [PATCH] chore: fix lint error (#1276) Signed-off-by: Bryce McMath --- .../core/App/components/listItems/NotificationListItem.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/legacy/core/App/components/listItems/NotificationListItem.tsx b/packages/legacy/core/App/components/listItems/NotificationListItem.tsx index 26d857104..756959ae4 100644 --- a/packages/legacy/core/App/components/listItems/NotificationListItem.tsx +++ b/packages/legacy/core/App/components/listItems/NotificationListItem.tsx @@ -309,6 +309,7 @@ const NotificationListItem: React.FC = ({ }, [ notification, notificationType, + logger, connection, store.preferences.alternateContactNames, t, @@ -385,7 +386,7 @@ const NotificationListItem: React.FC = ({ } setAction(() => onPress) setCloseAction(() => onClose) - }, [navigation, notification, notificationType, logger, toggleDeclineModalVisible, dismissBasicMessage]) + }, [navigation, notification, notificationType, toggleDeclineModalVisible, dismissBasicMessage]) useEffect(() => { switch (details.type) {