🐛 Fix wrong route path

This commit is contained in:
2025-07-06 12:28:42 +08:00
parent 996462f1fd
commit 446c33d8b0
2 changed files with 2 additions and 2 deletions

View File

@ -414,7 +414,7 @@ final routerProvider = Provider<GoRouter>((ref) {
builder: (context, state) => const LevelingScreen(),
),
GoRoute(
path: '/account/settings',
path: '/account/me/settings',
builder: (context, state) => const AccountSettingsScreen(),
),
],

View File

@ -336,7 +336,7 @@ class _UnauthorizedAccountScreen extends StatelessWidget {
child: Card(
child: InkWell(
onTap: () {
context.push('/auth/create');
context.push('/auth/create-account');
},
child: Padding(
padding: const EdgeInsets.all(16),