From 420cd5193b33d0a715a7fc3db261d3f9d6cb9d7a Mon Sep 17 00:00:00 2001
From: Peter Ombodi
Date: Thu, 12 Feb 2026 16:27:43 +0200
Subject: [PATCH] fix(mobile): Login routing on Splash screen (#26128)
* fix(mobile): fix Login routing on Splash screen
* fix(mobile): remove _duplicateGuard from the LoginRoute
revert changes in splash_screen
---------
Co-authored-by: Peter Ombodi
---
mobile/lib/routing/router.dart | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mobile/lib/routing/router.dart b/mobile/lib/routing/router.dart
index 9468b105e5..2bc000db45 100644
--- a/mobile/lib/routing/router.dart
+++ b/mobile/lib/routing/router.dart
@@ -165,7 +165,7 @@ class AppRouter extends RootStackRouter {
late final List routes = [
AutoRoute(page: SplashScreenRoute.page, initial: true),
AutoRoute(page: PermissionOnboardingRoute.page, guards: [_authGuard, _duplicateGuard]),
- AutoRoute(page: LoginRoute.page, guards: [_duplicateGuard]),
+ AutoRoute(page: LoginRoute.page),
AutoRoute(page: ChangePasswordRoute.page),
AutoRoute(page: SearchRoute.page, guards: [_authGuard, _duplicateGuard], maintainState: false),
AutoRoute(