From e56ec8619ee0ab0d1a18611c0e9f4093204e052b Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 2 Jul 2026 14:44:10 -0500 Subject: [PATCH] fix(onboarding): redirect to city setup after name step Was going directly to dashboard, skipping the city selection screen. Co-Authored-By: Claude Sonnet 4.6 --- lib/ui/views/setup_name_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/setup_name_view.dart b/lib/ui/views/setup_name_view.dart index 87b54f4..abea340 100644 --- a/lib/ui/views/setup_name_view.dart +++ b/lib/ui/views/setup_name_view.dart @@ -31,7 +31,7 @@ class _SetupNameViewState extends State { setState(() { _loading = true; _error = null; }); try { await context.read().updateName(name); - NavigationService.replaceTo(Flurorouter.dashboardRoute); + NavigationService.replaceTo(Flurorouter.setupCityRoute); } catch (_) { setState(() => _loading = false); }