Fix missing redirect after login
This commit is contained in:
@ -47,7 +47,7 @@ GoRouter router(Ref ref) {
|
||||
],
|
||||
),
|
||||
NavigationItem(
|
||||
path: '/profile',
|
||||
path: profilePage,
|
||||
body: (_) => const Text("Profile"),
|
||||
icon: Icons.person_outline,
|
||||
selectedIcon: Icons.person,
|
||||
|
@ -8,4 +8,7 @@ const authPage = "/login";
|
||||
const manualAuthPage = "/login/manual";
|
||||
|
||||
/// Settings path
|
||||
const settingsPage = "/settings";
|
||||
const settingsPage = "/settings";
|
||||
|
||||
// Profile path
|
||||
const profilePage = "/profile";
|
Reference in New Issue
Block a user