From 2bce4caee55a40d8ade6da2bc38175846d025364 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Fri, 13 Feb 2026 14:39:09 +0500 Subject: [PATCH] mobile: do not call EV.unsubscribeAll --- apps/mobile/app/hooks/use-app-events.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/mobile/app/hooks/use-app-events.tsx b/apps/mobile/app/hooks/use-app-events.tsx index 9f641b09a..dd9577803 100644 --- a/apps/mobile/app/hooks/use-app-events.tsx +++ b/apps/mobile/app/hooks/use-app-events.tsx @@ -814,7 +814,6 @@ export const useAppEvents = () => { return () => { emitterSubscriptions.forEach((sub) => sub?.remove?.()); subscriptions.forEach((sub) => sub?.unsubscribe?.()); - EV.unsubscribeAll(); }; }, [onSyncComplete, onUserUpdated]);