minor fix
This commit is contained in:
parent
f17d8813a7
commit
cf2ad989ff
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
|
|||
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",
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue