From 73c5b30b63a4c82bb7ad5b52bc10c5594566a800 Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Thu, 6 Jun 2024 08:43:29 +0600 Subject: [PATCH] fix: browse anonymously button takes to wrong route --- lib/pages/getting_started/sections/support.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/getting_started/sections/support.dart b/lib/pages/getting_started/sections/support.dart index 7bccfe06..b6be07e5 100644 --- a/lib/pages/getting_started/sections/support.dart +++ b/lib/pages/getting_started/sections/support.dart @@ -106,7 +106,7 @@ class GettingStartedScreenSupportSection extends HookConsumerWidget { onPressed: () async { await KVStoreService.setDoneGettingStarted(true); if (context.mounted) { - context.go(HomePage.name); + context.goNamed(HomePage.name); } }, ),