From eeefaf87f3b5bd449000682087f2c9d4860bc639 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 17 Apr 2021 19:23:06 +0200 Subject: [PATCH] Fix issue --- lib/ui/routes/push_notifications_route.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ui/routes/push_notifications_route.dart b/lib/ui/routes/push_notifications_route.dart index fa2fba5..97e836a 100644 --- a/lib/ui/routes/push_notifications_route.dart +++ b/lib/ui/routes/push_notifications_route.dart @@ -78,7 +78,7 @@ class PushNotificationsConfigurationWidget extends StatefulWidget { const PushNotificationsConfigurationWidget({ Key key, @required this.onConfigured, - this.onChanged, + @required this.onChanged, }) : super(key: key); @override @@ -101,6 +101,8 @@ class PushNotificationsConfigurationWidgetState if (currStatus == PushNotificationsStatus.UNDEFINED && srvConfig.notificationsPolicy.hasFirebase) currStatus = PushNotificationsStatus.FIREBASE; + + widget.onChanged(); } @override