minor cleanup

This commit is contained in:
Stephan D
2026-01-16 12:08:52 +01:00
parent 67a9b72a3f
commit 4cd4bfe7be
33 changed files with 50 additions and 51 deletions

View File

@@ -17,12 +17,12 @@ GoRouter createRouter() => GoRouter(
GoRoute(
name: Pages.root.name,
path: routerPage(Pages.root),
builder: (_, __) => const LoginPage(),
builder: (_, _) => const LoginPage(),
),
GoRoute(
name: Pages.login.name,
path: routerPage(Pages.login),
builder: (_, __) => const LoginPage(),
builder: (_, _) => const LoginPage(),
),
GoRoute(
name: Pages.sfactor.name,
@@ -34,7 +34,7 @@ GoRouter createRouter() => GoRouter(
GoRoute(
name: Pages.signup.name,
path: routerPage(Pages.signup),
builder: (_, __) => const SignUpPage(),
builder: (_, _) => const SignUpPage(),
),
GoRoute(
name: Pages.verify.name,
@@ -45,5 +45,5 @@ GoRouter createRouter() => GoRouter(
),
payoutShellRoute(),
],
errorBuilder: (_, __) => const NotFoundPage(),
errorBuilder: (_, _) => const NotFoundPage(),
);