diff --git a/lib/main.dart b/lib/main.dart index efb1e9ac..270f2dc9 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -55,8 +55,6 @@ Future initializeApp() async { } Future foregroundHandleMessage(RemoteMessage message) async { - log('Foreground message received: ${message.data['click_action']}'); - if (message.data['click_action'] == 'enroll_cond') { AppState().haveLocal = true; AppState().context!.go('/homePage'); @@ -70,7 +68,6 @@ Future foregroundHandleMessage(RemoteMessage message) async { } Future _backgroundHandleMessage(RemoteMessage message) async { - log('Background message received: ${message.data}'); if (message.data['click_action'] == 'enroll_cond') { AppState().haveLocal = true; AppState().context!.go('/homePage');