Fix missing redirect after login
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
2025-07-02 22:48:53 +02:00
parent ff97fb69f7
commit 7387e285a0
4 changed files with 17 additions and 7 deletions

View File

@ -47,7 +47,7 @@ GoRouter router(Ref ref) {
],
),
NavigationItem(
path: '/profile',
path: profilePage,
body: (_) => const Text("Profile"),
icon: Icons.person_outline,
selectedIcon: Icons.person,

View File

@ -8,4 +8,7 @@ const authPage = "/login";
const manualAuthPage = "/login/manual";
/// Settings path
const settingsPage = "/settings";
const settingsPage = "/settings";
// Profile path
const profilePage = "/profile";