diff --git a/lib/ui/notification/update/change_log_page.dart b/lib/ui/notification/update/change_log_page.dart index 94eae649f..5b6e0bd33 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", ),