minor fix

This commit is contained in:
Neeraj Gupta 2022-11-23 09:14:22 +05:30
parent f17d8813a7
commit cf2ad989ff
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -72,7 +72,9 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
child: GradientButton(
onTap: () async {
await UpdateService.instance.hideChangeLog();
if (mounted && Navigator.of(context).canPop()) {
Navigator.of(context).pop();
}
},
text: "Let's go",
),