diff --git a/apps/mobile_app/lib/save_family_app.dart b/apps/mobile_app/lib/save_family_app.dart index 53a32bf9..2de0f80c 100644 --- a/apps/mobile_app/lib/save_family_app.dart +++ b/apps/mobile_app/lib/save_family_app.dart @@ -34,7 +34,7 @@ class SaveFamilyAppState extends ConsumerState onError: () => appRouter.go(AppRoutes.scaTreezor), ); onBeforeSessionCleared = walletHeartbeat.stop; - walletHeartbeat.start(); + // walletHeartbeat.start(); } @override @@ -49,10 +49,10 @@ class SaveFamilyAppState extends ConsumerState debugPrint('State: $state'); ref.read(appLifecycleStateProvider.notifier).setState(state); if (state == AppLifecycleState.resumed) { - walletHeartbeat.start(); + // walletHeartbeat.start(); ref.read(permissionsProvider.notifier).checkPermissions(); } else if (state == AppLifecycleState.paused) { - walletHeartbeat.stop(); + // walletHeartbeat.stop(); } super.didChangeAppLifecycleState(state); }