diff --git a/lib/ui/notification/update/change_log_page.dart b/lib/ui/notification/update/change_log_page.dart index 94eae649f2738eeac620bb4669407e0ffa262c71..5b6e0bd33caf6c7441a9e55fa4498b89880a53c3 100644 --- a/lib/ui/notification/update/change_log_page.dart +++ b/lib/ui/notification/update/change_log_page.dart @@ -72,7 +72,9 @@ class _ChangeLogPageState extends State { child: GradientButton( onTap: () async { await UpdateService.instance.hideChangeLog(); - Navigator.of(context).pop(); + if (mounted && Navigator.of(context).canPop()) { + Navigator.of(context).pop(); + } }, text: "Let's go", ),