From bba5e8cd40009c642175065aaa91c4628f40d5bf Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Fri, 16 Aug 2024 07:13:53 +0545 Subject: [PATCH] fix typo --- lib/src/router/router.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/router/router.dart b/lib/src/router/router.dart index a1377a4..5ba6734 100644 --- a/lib/src/router/router.dart +++ b/lib/src/router/router.dart @@ -136,7 +136,7 @@ final routerProvider = Provider( if (isProtectedRoute && isAuthenticated && !introSeen) { qParams['redirect'] = qParams['redirect'] ?? lMatch; - return Uri(path: '/${LoginScreen.name}', queryParameters: qParams) + return Uri(path: '/${IntroScreen.name}', queryParameters: qParams) .toString(); }