From 50ac241fb6682279021df3bd4ff7a23d42b532ff Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Velez Date: Mon, 11 Nov 2024 18:47:01 -0400 Subject: [PATCH] Update CompanionDelegates.tsx --- components/CompanionDelegates.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/CompanionDelegates.tsx b/components/CompanionDelegates.tsx index b1a92d1ed..81b179fb6 100644 --- a/components/CompanionDelegates.tsx +++ b/components/CompanionDelegates.tsx @@ -111,7 +111,8 @@ const CompanionDelegates = () => { useEffect(() => { initializeNotifications(processPushNotifications); - }, [processPushNotifications]); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); const handleOpenURL = useCallback( async (event: { url: string }): Promise => {